Skip to content

Commit

Permalink
Set Git identity for CI commits
Browse files Browse the repository at this point in the history
  • Loading branch information
vy committed Sep 6, 2023
1 parent 69636c9 commit 88fae68
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/deploy-release-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,10 @@ jobs:
-DnewVersion="$PROJECT_VERSION" \
-DgenerateBackupPoms=false \
versions:set-property
git config user.name github-actions
git config user.email github-actions@github.com
git commit pom.xml -m "Set version to \`$PROJECT_VERSION\`"
git push origin
fi
- name: Release changelog
Expand All @@ -115,7 +118,10 @@ jobs:
-P changelog-release
git add src/changelog
if [ -n "$(git status --porcelain)" ]; then
git config user.name github-actions
git config user.email github-actions@github.com
git commit src/changelog -m "Release changelog for version \`$PROJECT_VERSION\`"
git push origin
fi
- name: Upload to Nexus
Expand Down

0 comments on commit 88fae68

Please sign in to comment.