Skip to content

Commit

Permalink
with git username and email configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanJCummings committed Dec 4, 2024
1 parent 6dc0724 commit d64fcf1
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,14 @@ jobs:
</settings>
EOF
- name: configure git in runner environment
run: |
git config --global user.name "${{ secrets.CI_BOT_USERNAME }}"
git config --global user.email "${{ secrets.CI_BOT_EMAIL }}"
git config --global init.defaultBranch master
- name: deploy to MSUSEL maven repository
run: |
# git config --global user.name "${{ secrets.CI_BOT_USERNAME }}"
# git config --global user.email "${{ secrets.CI_BOT_EMAIL }}"
# git config --global init.defaultBranch master
mvn --batch-mode -f pom.xml clean deploy -Dmaven.test.skip=true
Expand Down

0 comments on commit d64fcf1

Please sign in to comment.