Skip to content

chore: release v1.0.0 #2

chore: release v1.0.0

chore: release v1.0.0 #2

Workflow file for this run

name: Publish
on:
push:
tags:
- '*.*.*'
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: 24
registry-url: 'https://registry.npmjs.com'
- env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
npm install && npm run build
npm publish --provenance --access public