Skip to content

Commit

Permalink
Allow git changes when publishing
Browse files Browse the repository at this point in the history
This is necessary as we flip a flag in the TS
source when compiling for release.
  • Loading branch information
Gerrit0 committed Feb 23, 2025
1 parent 446e416 commit bdbfde6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ jobs:
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
- name: Publish
if: steps.check.outputs.changed == 'true' && contains(steps.check.outputs.version, 'beta')
run: pnpm publish --tag beta
run: pnpm publish --tag beta --no-git-checks
2 changes: 1 addition & 1 deletion .github/workflows/publish-lts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ jobs:
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
- name: Publish
if: steps.check.outputs.changed == 'true'
run: pnpm publish --tag lts
run: pnpm publish --tag lts --no-git-checks
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
- name: Publish
if: steps.check.outputs.changed == 'true'
run: pnpm publish
run: pnpm publish --no-git-checks
- name: Generate Release
if: steps.check.outputs.changed == 'true'
run: |
Expand Down

0 comments on commit bdbfde6

Please sign in to comment.