Skip to content

3.7.2-rc.3

3.7.2-rc.3 #11

Workflow file for this run

name: Prerelease
on:
release:
types: [prereleased]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: actions/setup-node@v3
with:
node-version: 18
registry-url: https://registry.npmjs.org/
cache: 'npm'
- run: npm ci
- run: rustup target add wasm32-unknown-unknown
- run: npm run build
- run: npm run bundle
- run: ls -lhR dist
- run: npm publish --tag next
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}