Skip to content

v0.0.1-beta.2

v0.0.1-beta.2 #3

Workflow file for this run

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}}