Skip to content

Commit b81f938

Browse files
Configure Git for global user settings (#32)
1 parent 98996e4 commit b81f938

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/deploy.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,10 @@ jobs:
3737
poetry config virtualenvs.in-project true
3838
- name: 🏗 Install dependencies
3939
run: poetry install --no-interaction
40+
- name: 🏗 Configure Git
41+
run: |
42+
git config --global user.name "${{ secrets.GIT_COMMITTER_NAME }}"
43+
git config --global user.email "${{ secrets.GIT_COMMITTER_EMAIL }}"
4044
- name: 🏗 Deploy new version with Mike
4145
run: |
4246
VERSION=${{ github.event.release.tag_name || github.event.inputs.version }}

0 commit comments

Comments
 (0)