Skip to content

Commit

Permalink
Add email and name to git user before pushing tag.
Browse files Browse the repository at this point in the history
  • Loading branch information
zaneselvans committed Dec 18, 2023
1 parent 64ea7c2 commit 8bd1b73
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,8 @@ jobs:
- name: Test pushing a tag
run: |
echo "RUN_DATE=$(date +%Y-%m-%d)" >> $GITHUB_ENV
git config user.email "[email protected]"
git config user.name "PudlBot"
git tag -a -m "Testy McTesterTag" test-${{ env.RUN_DATE }}
git push origin test-${{ env.RUN_DATE }}
Expand Down

0 comments on commit 8bd1b73

Please sign in to comment.