Skip to content

v0.1.5

v0.1.5 #5

Workflow file for this run

name: Publish package to NPM
on:
release:
types: [created]
workflow_dispatch: {}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: "20.x"
registry-url: "https://registry.npmjs.org"
- name: Install modules
run: yarn install --immutable
- name: Build
run: yarn build
- run: yarn npm publish
env:
YARN_NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}