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 to npm using wasm-pack on release | |
on: | |
release: | |
types: | |
- published | |
jobs: | |
build_and_publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh | |
- run: | | |
NPM_PACKAGE_VERSION="$(echo $RELEASE_TAG_NAME | sed s/v//)" | |
sed -i -e 's/version = "0.0.0-dev"/version = "'"$NPM_PACKAGE_VERSION"'"/' Cargo.toml | |
env: | |
RELEASE_TAG_NAME: ${{ github.event.release.tag_name }} | |
- run: wasm-pack build --scope renju-note | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
registry-url: 'https://registry.npmjs.org/' | |
scope: '@renju-note' | |
- run: cp ./pkg/package.json ./pkg/quintet* ./ | |
- run: npm publish --access public | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }} |