Skip to content

Commit

Permalink
ci: set git user
Browse files Browse the repository at this point in the history
  • Loading branch information
cbuto committed Sep 20, 2023
1 parent 086b8b7 commit ae86c6a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/create-dev-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,10 @@ jobs:
GITHUB_TOKEN: ${{ secrets.MESOSPHERECI_USER_TOKEN }}

- name: Create tag
run: git tag -m "${{ env.TAG }}" ${{ env.TAG }}
run: |
git config --global user.email "[email protected]"
git config --global user.name "ci-mergebot"
git tag -m "${{ env.TAG }}" ${{ env.TAG }}
- name: Push tag
run: git push --force --tags origin ${{ env.TAG }}
Expand Down

0 comments on commit ae86c6a

Please sign in to comment.