Skip to content

Commit bdbfde6

Browse files
committed
Allow git changes when publishing
This is necessary as we flip a flag in the TS source when compiling for release.
1 parent 446e416 commit bdbfde6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/publish-beta.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ jobs:
3535
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
3636
- name: Publish
3737
if: steps.check.outputs.changed == 'true' && contains(steps.check.outputs.version, 'beta')
38-
run: pnpm publish --tag beta
38+
run: pnpm publish --tag beta --no-git-checks

.github/workflows/publish-lts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ jobs:
3535
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
3636
- name: Publish
3737
if: steps.check.outputs.changed == 'true'
38-
run: pnpm publish --tag lts
38+
run: pnpm publish --tag lts --no-git-checks

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
3838
- name: Publish
3939
if: steps.check.outputs.changed == 'true'
40-
run: pnpm publish
40+
run: pnpm publish --no-git-checks
4141
- name: Generate Release
4242
if: steps.check.outputs.changed == 'true'
4343
run: |

0 commit comments

Comments
 (0)