Skip to content

Commit 95c0713

Browse files
fix: add --no-git-checks to github action
1 parent 582caac commit 95c0713

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ jobs:
2929

3030
- name: Dry run publish (pre-release only)
3131
if: ${{ github.event.release.prerelease == true }}
32-
run: pnpm publish --dry-run
32+
run: pnpm publish --dry-run --no-git-checks
3333

3434
- name: Publish to npm
3535
if: ${{ github.event.release.prerelease == false }}
36-
run: pnpm publish
36+
run: pnpm publish --no-git-checks
3737
env:
3838
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 commit comments

Comments
 (0)