Skip to content

v0.4.0

v0.4.0 #3

Workflow file for this run

name: Publish to npm
on:
release:
types:
- created
# run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
publish:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: "19"
- run: yarn --frozen-lockfile
- run: yarn run client:build
- uses: JS-DevTools/npm-publish@v3
with:
token: ${{ secrets.NPM_TOKEN }}