Skip to content

chore(deps): update pnpm/action-setup action to v3 #23

chore(deps): update pnpm/action-setup action to v3

chore(deps): update pnpm/action-setup action to v3 #23

Workflow file for this run

name: Publish
on:
push:
branches:
- main
tags: '*@[0-9]+.[0-9]+.[0-9]+'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- run: |
git config user.name github-actions
git config user.email [email protected]
- uses: actions/setup-node@v4
with:
node-version: 18
registry-url: 'https://registry.npmjs.org'
- uses: pnpm/[email protected]
with:
version: 8.10.2
- run: pnpm install
- run: npm run release
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}