Skip to content

v5.5.0

v5.5.0 #22

Workflow file for this run

name: Publish (next)
on:
release:
types: [created]
permissions:
contents: read
id-token: write
jobs:
build:
if: "github.event.release.prerelease"
environment: npm
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: latest
- uses: actions/setup-node@v4
with:
node-version-file: ".node-version"
registry-url: 'https://registry.npmjs.org'
cache: 'pnpm'
- run: pnpm install --frozen-lockfile
- run: pnpm publish --tag=next
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_CONFIG_PROVENANCE: true
NPM_CONFIG_GIT_CHECKS: false