Skip to content

Commit 5f81fbe

Browse files
committed
Fix pnpm publish problem in GitHub Actions
1 parent c108c66 commit 5f81fbe

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ jobs:
4444
- name: Build
4545
run: pnpm run build
4646
- name: Publish package
47-
run: pnpm publish
47+
# https://github.com/pnpm/pnpm/issues/5894
48+
run: pnpm publish --no-git-checks
4849
env:
4950
NPM_CONFIG_PROVENANCE: true
5051
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 commit comments

Comments
 (0)