Skip to content

v0.209.8

v0.209.8 #9

Workflow file for this run

# .github/workflows/publish.yml
name: Build and Publish Package
on:
release:
types: [published]
jobs:
build-and-publish:
runs-on: ubuntu-latest
steps:
- name: Checkout code
# This checks out the code at the specific tag that triggered the workflow
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 22
registry-url: 'https://registry.npmjs.org/'
- name: Install dependencies and build
run: npm ci
- name: Publish to npm
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPMJS_AUTH_TOKEN }}