Skip to content

v0.1.408

v0.1.408 #6

Workflow file for this run

name: Publish to NPM
on:
release:
types: [published]
# Enables running this workflow manually from the Actions tab.
workflow_dispatch:
jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 16
registry-url: https://registry.npmjs.org/
- run: |
cd javascript/
npm ci
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_API_TOKEN}}