v0.2.3-alpha.1 #8
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish npm package | |
on: | |
# Trigger the workflow when a new release is created | |
release: | |
types: [published] | |
# Trigger the workflow manually | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
# Checkout the code | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.ref_name }} | |
# Setup Node.js | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
registry-url: 'https://registry.npmjs.org' | |
# Install wasm-pack | |
- name: wasm-pack-action | |
uses: jetli/wasm-pack-action@v0.4.0 | |
# Build and publish to npm | |
- name: Build and publish to npm | |
run: sh ./scripts/publish.sh ${{ github.ref_name }} | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |