Release: JS #13
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: "Release: JS" | |
on: | |
push: | |
tags: | |
- js-v* | |
workflow_dispatch: | |
defaults: | |
run: | |
working-directory: ainu-utils-js | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
# https://github.com/npm/cli/issues/6184#issuecomment-1544496444 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
registry-url: "https://registry.npmjs.org" | |
- name: Install wasm-pack | |
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh -s -- -f | |
- name: Build | |
run: | | |
wasm-pack build --target nodejs | |
cd ./pkg | |
npm pkg set name="ainu-utils" | |
echo "//registry.npmjs.org/:_authToken=\${NPM_TOKEN}" > .npmrc | |
- name: Publish | |
run: wasm-pack publish --access public | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |