Skip to content

Commit

Permalink
ci(github): disable git hooks on release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonGolms committed Sep 2, 2022
1 parent 8942456 commit c3ab649
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on:
- main
jobs:
release:
env:
# Disable husky (git hooks) in CI, see: https://typicode.github.io/husky/#/?id=disable-husky-in-cidocker
HUSKY: 0
name: Release
runs-on: ubuntu-latest
steps:
Expand All @@ -21,7 +24,7 @@ jobs:
- name: Setup Quickstarter (Component ID)
run: find . -type f \( ! -name "README.md" \) -exec sed -i 's/COMPONENTID/app/g' {} +
- name: Install Dependencies
run: npm install
run: npm ci
- name: Release
env:
GIT_AUTHOR_NAME: 'Simon Golms'
Expand Down

0 comments on commit c3ab649

Please sign in to comment.