Skip to content

v9.8.0

v9.8.0 #1

Workflow file for this run

name: Publish to NPM
on:
release:
types: [created]
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
registry-url: 'https://registry.npmjs.org'
- name: Upgrade npm for OIDC support
run: npm install -g npm@latest
- run: yarn install --immutable
- run: yarn prepare
- run: npm publish --provenance --access public ${{ github.event.release.prerelease && '--tag next' || ''}}