Skip to content

chore: release v2.5.5 #1

chore: release v2.5.5

chore: release v2.5.5 #1

Workflow file for this run

name: Publish Package
on:
push:
tags:
- "v*"
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: pnpm/action-setup@v2
- uses: actions/setup-node@v3
with:
node-version: 18
cache: pnpm
registry-url: "https://registry.npmjs.org"
- run: pnpm install
- run: pnpm run build
- run: pnpm -r publish --access public --no-git-checks
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}