Skip to content

Commit 3a5ae46

Browse files
ci: Disable husky on build (#400)
Disable husky on build Signed-off-by: Xavier Geerinck <[email protected]> Signed-off-by: Xavier Geerinck <[email protected]>
1 parent 354c259 commit 3a5ae46

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
# note: package.json gets updated here for the new package name
6161
- name: Publish to npm (@dapr/dapr)
6262
if: env.DEPLOY_PACKAGE == 'true'
63-
run: npm publish build/ --access public
63+
run: HUSKY=0 npm publish build/ --access public
6464
env:
6565
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
6666

@@ -75,6 +75,6 @@ jobs:
7575
# note: package.json gets updated here for the new package name
7676
- name: "[dapr-client] Publish to npm (dapr-client)"
7777
if: env.DEPLOY_PACKAGE == 'true'
78-
run: npm publish build/ --access public
78+
run: HUSKY=0 npm publish build/ --access public
7979
env:
8080
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 commit comments

Comments
 (0)