Skip to content

v1.4.1

v1.4.1 #9

Workflow file for this run

name: GitHub Packages Registry
on:
workflow_dispatch:
release:
types: [created]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '20.x'
registry-url: https://npm.pkg.github.com
- run: yarn install
- run: yarn build
- run: yarn publish
env:
NODE_AUTH_TOKEN: ${{ secrets.GHP_TOKEN }}