Skip to content

0.1.3

0.1.3 #3

Workflow file for this run

name: Release
on:
push:
tags: ['v*']
jobs:
release:
runs-on: ubuntu-22.04
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v4
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
- run: npm install
- run: cargo install wasm-pack --version 0.13.1
- run: make all
- run: npm publish --provenance --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}