ci: add workflow to publish on npmjs.org #6
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 Packages | |
on: | |
push: | |
workflow_dispatch: | |
inputs: | |
beta: | |
description: Publish to the beta channel | |
default: false | |
required: true | |
type: boolean | |
jobs: | |
npmjs: | |
environment: npm-publish | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: wasm | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: cargo install wasm-pack | |
working-directory: wasm | |
- name: Configure NPM | |
run: npm config set "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" | |
- name: Build | |
run: ./build.sh | |
working-directory: wasm | |
- name: Publish | |
run: npm publish --tag ${{ inputs.beta && 'beta' || 'latest' }} --dry-run | |
working-directory: dist/bundler | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: npm-bundler | |
path: dist/bundler |