v0.0.1-beta.2 #3
Workflow file for this run
This file contains hidden or 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 | |
on: | |
release: | |
types: [created] | |
workflow_dispatch: | |
inputs: | |
tag_name: | |
description: 'Tag name for the release' | |
required: true | |
type: string | |
permissions: | |
contents: read | |
id-token: write | |
jobs: | |
publish-npm: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v5 | |
- uses: actions/setup-node@v5 | |
with: | |
node-version: 22 | |
registry-url: https://registry.npmjs.org/ | |
cache: npm | |
- run: npm ci | |
- run: npm run test | |
- run: npm version ${TAG_NAME} --git-tag-version=false | |
env: | |
TAG_NAME: ${{ github.event.release.tag_name || github.event.inputs.tag_name }} | |
- run: npm run build | |
- run: npm whoami; npm --ignore-scripts publish --provenance | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.npm_token}} |