Skip to content

Commit 065584d

Browse files
committed
chore: fix publish workflow
1 parent 42aef00 commit 065584d

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/publish.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,17 @@ jobs:
1212
- name: Checkout
1313
uses: actions/checkout@v4
1414
- name: Set up Node.js
15-
uses: actions/setup-node@v3
15+
uses: actions/setup-node@v4
1616
with:
1717
node-version: '16'
18+
registry-url: 'https://registry.npmjs.org'
1819
- name: Install pnpm
1920
uses: pnpm/action-setup@v2
2021
- name: Install Dependencies
2122
run: pnpm i --frozen-lockfile
2223
- name: Build
2324
run: pnpm build
2425
- name: Publish to NPM
25-
run: pnpm publish
26+
run: pnpm publish --no-git-checks
2627
env:
2728
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}

0 commit comments

Comments
 (0)