Skip to content

Commit 4c15279

Browse files
committed
added --no-git-checks to the pnpm publish step because of the version bump in package.json due to the tag
1 parent 110a910 commit 4c15279

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

.github/workflows/default.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -96,13 +96,8 @@ jobs:
9696

9797
- name: Build Release
9898
run: pnpm run build:lib
99-
100-
- name: Show uncommitted changes (should be empty)
101-
run: |
102-
git status --porcelain=v1
103-
git diff --name-only
10499

105100
- name: Publish to npmjs
106-
run: pnpm publish --access public
101+
run: pnpm publish --access public --no-git-checks # this is necessary because we dont want to commit the version bump
107102
env:
108103
NODE_AUTH_TOKEN: ${{secrets.NPM_PUBLISH_TOKEN}}

0 commit comments

Comments
 (0)