Skip to content

v0.7.3

v0.7.3 #14

Workflow file for this run

name: Publish package to npmjs
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
registry-url: "https://registry.npmjs.org"
- run: yarn install --immutable
- run: yarn config set -H npmAuthToken "${{ secrets.NPM_TOKEN }}"
- run: yarn run publish:all --tag ${{ github.event.release.prerelease == true && 'pre' || 'latest' }}