Skip to content

Commit

Permalink
fix(ci): add HUSKY=0 in publish job to disable husky
Browse files Browse the repository at this point in the history
  • Loading branch information
seansica committed Oct 21, 2024
1 parent 8cc2802 commit e1f83bf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,8 @@ jobs:

- name: Install dependencies
run: npm clean-install --only=production
env:
HUSKY: '0' # Disable Husky installation

- name: Verify the integrity of provenance attestations and registry signatures for installed dependencies
run: npm audit signatures
Expand All @@ -112,5 +114,5 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
HUSKY_SKIP_HOOKS: '1'
HUSKY: 0 # Temporarily disables all Git hooks
run: npx semantic-release

0 comments on commit e1f83bf

Please sign in to comment.