Skip to content

Commit d8fb60b

Browse files
committed
Fix tag creation in deploy workflow
As commented in #905, an annotated tag needs a configured user.
1 parent f5b4a5d commit d8fb60b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/deploy.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,7 @@ jobs:
4343

4444
- name: Push tag
4545
run: |
46+
git config user.name "pytest bot"
47+
git config user.email "[email protected]"
4648
git tag --annotate --message=v${{ github.event.inputs.version }} v${{ github.event.inputs.version }} ${{ github.sha }}
4749
git push origin v${{ github.event.inputs.version }}

0 commit comments

Comments
 (0)