feat!: Support installing multiple extensions #2849
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |