Merge pull request #116 from aplosdev/dependabot/npm_and_yarn/docs/vi… #385
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 Unreleased Package | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
jobs: | |
build: | |
if: ${{ github.event_name != 'workflow_dispatch' && startsWith(github.event.head_commit.message, 'next:') }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: latest | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: latest | |
- run: pnpm install | |
publish-npm: | |
needs: build | |
permissions: | |
packages: write | |
contents: read | |
id-token: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: latest | |
registry-url: https://registry.npmjs.org/ | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: latest | |
- run: pnpm install | |
- run: pnpm publish --no-git-checks --tag next | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} | |
NPM_CONFIG_PROVENANCE: true |