Skip to content

v3.0.4

v3.0.4 #4

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: 24
registry-url: https://registry.npmjs.org
- run: yarn install --frozen-lockfile
- name: Set version from release tag
run: npm version "${GITHUB_REF_NAME#v}" --no-git-tag-version
- run: npm run compile
- run: npm publish --provenance --access public