Skip to content

Commit

Permalink
fix: pnpm publish時のブランチチェックを無効化
Browse files Browse the repository at this point in the history
  • Loading branch information
ibulog committed Dec 18, 2024
1 parent c49753d commit e9d4334
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publishRelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ jobs:
if: ${{ env.IS_PRERELEASE == 'false' }}
- run: pnpm release --prerelease
if: ${{ env.IS_PRERELEASE == 'true' }}
- run: pnpm publish
- run: pnpm publish --no-git-checks
if: ${{ env.IS_PRERELEASE == 'false' }}
env:
NODE_AUTH_TOKEN: ${{ secrets.KUFU_NPM_RELEASE_TOKEN }}
- run: pnpm publish --tag prerelease
- run: pnpm publish --tag prerelease --no-git-checks
if: ${{ env.IS_PRERELEASE == 'true' }}
env:
NODE_AUTH_TOKEN: ${{ secrets.KUFU_NPM_RELEASE_TOKEN }}
Expand Down

0 comments on commit e9d4334

Please sign in to comment.