4d5eb28cb4
Co-authored-by: Okinea Dev <hi@okinea.dev>
35 lines
697 B
YAML
35 lines
697 B
YAML
name: ✨ pkg.pr.new
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
build:
|
|
name: Publish Test Packages
|
|
runs-on: ubuntu-22.04
|
|
if: ${{ github.repository == 'wxt-dev/wxt' }}
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
|
|
- name: Setup
|
|
uses: ./.github/actions/setup
|
|
|
|
- name: Build All Packages
|
|
run: bun run buildc all
|
|
|
|
- name: Publish
|
|
run: bun pkg-pr-new publish --compact --bun './packages/*'
|
|
|
|
- name: DEBUG
|
|
if: always()
|
|
run: ls -lhA
|
|
working-directory: packages/analytics
|