Skip to content

chore(release): 1.2.0 #25

chore(release): 1.2.0

chore(release): 1.2.0 #25

Workflow file for this run

name: Publish package to GitHub Packages
on:
push:
tags: "*"
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
with:
version: 8
- uses: actions/setup-node@v3
with:
node-version: "16.x"
registry-url: "https://registry.npmjs.org"
cache: "pnpm"
- run: pnpm install
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}