Skip to content

v0.3.0

v0.3.0 #4

Workflow file for this run

name: Release
on:
release:
types: [published]
jobs:
publish:
name: NPM Publish
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 23.x
registry-url: "https://registry.npmjs.org"
- name: Install dependencies
run: npm ci
- name: Build the project
run: npm run build --if-present
- name: Publish to npm
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}