Skip to content

Commit

Permalink
fix(ci): delete .husky in release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
cesconix committed Aug 6, 2024
1 parent 19a9878 commit b23443f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,14 @@ jobs:
- name: Build
run: pnpm build

- name: Creating .npmrc
- name: Creating .npmrc and remove .husky
run: |
cat << EOF > "$HOME/.npmrc"
enable-pre-post-scripts=true
package-manager-strict=false
//registry.npmjs.org/:_authToken=$NPM_TOKEN
EOF
rm -rf .husky
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

Expand Down

0 comments on commit b23443f

Please sign in to comment.