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 21, 2023
1 parent 086b8b7 commit 100d27c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/create-dev-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ env:

permissions:
contents: write
actions: write

jobs:
create-dev-tag:
Expand Down Expand Up @@ -48,7 +49,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 "ci-mergebot@d2iq.com"
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 100d27c

Please sign in to comment.