chore: version packages (beta) #10683
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: Preview Release | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: # run on PRs against any base branch, not just main | |
| permissions: {} | |
| jobs: | |
| publish: | |
| # Skip for forks — they don't have write access needed by pkg-pr-new. | |
| if: github.repository_owner == 'cloudflare' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| persist-credentials: false | |
| - uses: ./.github/actions/setup | |
| - run: vp run build | |
| - run: vp dlx pkg-pr-new@0.0.66 publish --pnpm './packages/types' './packages/vinext' './packages/cloudflare' './packages/create-vinext-app' |