Skip to content

Commit

Permalink
Configure Git for global user settings (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
klaasnicolaas authored Jul 21, 2024
1 parent 98996e4 commit b81f938
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ jobs:
poetry config virtualenvs.in-project true
- name: 🏗 Install dependencies
run: poetry install --no-interaction
- name: 🏗 Configure Git
run: |
git config --global user.name "${{ secrets.GIT_COMMITTER_NAME }}"
git config --global user.email "${{ secrets.GIT_COMMITTER_EMAIL }}"
- name: 🏗 Deploy new version with Mike
run: |
VERSION=${{ github.event.release.tag_name || github.event.inputs.version }}
Expand Down

0 comments on commit b81f938

Please sign in to comment.