Skip to content

Commit

Permalink
Set user email when creating tag to prevent git error (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
zivnevo authored Jun 13, 2024
1 parent e3b6e49 commit 24c87fa
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/make-github-and-docker-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ jobs:
- name: Create and push a new git tag
run: |
git config user.name ${{ github.actor }}
git config user.email "${{ github.actor_id }}+${{ github.actor }}@users.noreply.github.com"
git tag -a v${{ env.version }} -m "Version ${{ env.version }}"
git push origin v${{ env.version }}
Expand Down

0 comments on commit 24c87fa

Please sign in to comment.