Skip to content

v1.9.0

v1.9.0 #79

Workflow file for this run

name: Release Package
on:
release:
types: [created]
jobs:
publish-gpr:
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
registry-url: https://npm.pkg.github.com/
scope: '@beeinventor'
- uses: pnpm/action-setup@v4
with:
version: 9
- run: pnpm i
- run: pnpm build
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}