b235c8591e
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
35 lines
698 B
YAML
35 lines
698 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@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
|
|
|
|
- name: Setup
|
|
uses: ./.github/actions/setup
|
|
|
|
- name: Build All Packages
|
|
run: bun run buildc all
|
|
|
|
- name: Publish
|
|
run: bunx pkg-pr-new publish --compact --bun './packages/*'
|
|
|
|
- name: DEBUG
|
|
if: always()
|
|
run: ls -lhA
|
|
working-directory: packages/analytics
|