We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98996e4 commit b81f938Copy full SHA for b81f938
.github/workflows/deploy.yaml
@@ -37,6 +37,10 @@ jobs:
37
poetry config virtualenvs.in-project true
38
- name: 🏗 Install dependencies
39
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 }}"
44
- name: 🏗 Deploy new version with Mike
45
run: |
46
VERSION=${{ github.event.release.tag_name || github.event.inputs.version }}
0 commit comments