Skip to content

Version 0.0.14 - Experimental Alpha #13

Version 0.0.14 - Experimental Alpha

Version 0.0.14 - Experimental Alpha #13

Workflow file for this run

name: Publish npm Package
on:
release:
types: [created]
jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: https://registry.npmjs.org/
- run: |
npm ci
npm run build
cd dist
npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}