npm publish #3
Workflow file for this run
This file contains 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: Publish Prerelease | |
on: | |
pull_request: | |
branches: [main] | |
types: [labeled, unlabeled, opened, synchronize] | |
paths: | |
- "packages/bumpgen-core/**" | |
jobs: | |
publish-prerelease: | |
if: contains(github.event.pull_request.labels.*.name, 'prerelease') | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: main | |
- uses: martinbeentjes/npm-get-version-action@main | |
with: | |
path: packages/bumpgen-core | |
id: main-version | |
- uses: actions/checkout@v4 | |
- uses: martinbeentjes/npm-get-version-action@main | |
with: | |
path: packages/bumpgen-core | |
id: pr-version | |
- name: Setup | |
uses: ./tooling/github/setup | |
- uses: actions/github-script@v6 | |
env: | |
PR_VERSION: ${{steps.pr-version.outputs.current-version}} | |
MAIN_VERSION: ${{steps.main-version.outputs.current-version}} | |
with: | |
script: require('./.github/versioning.js').verify({ github, context, core }) | |
- name: set publishing config | |
run: pnpm config set '//registry.npmjs.org/:_authToken' "${NODE_AUTH_TOKEN}" | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} | |
- run: pnpm i | |
- run: pnpm --filter=@repo/bumpgen-core run build | |
- run: pnpm --filter=@repo/bumpgen-core publish --tag next --access public --no-git-checks | |
env: | |
NODE_AUTH_TOKEN: "${{ secrets.NPM_TOKEN }}" |