Skip to content

1.0.0-rc16

1.0.0-rc16 #24

Workflow file for this run

name: Publish
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16.10.0
registry-url: https://registry.npmjs.org/
- run: yarn install
- run: yarn compile
- run: yarn publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}