Skip to content

Commit

Permalink
[feat] mvn prepare release - added deploy token
Browse files Browse the repository at this point in the history
  • Loading branch information
Ramachandran Nellaiyappan committed Mar 10, 2024
1 parent e473fd9 commit d7386d8
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/prepare-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ jobs:
distribution: 'temurin'
cache: maven

- name: setup git properties for preparation
run: |
git config --global user.email "[email protected]"
git config --global user.name "Deploy Bot"
- name: Prepare Release
run: mvn -B -V -DpushChanges=false release:prepare -DscmCommentPrefix='chore:' -DreleaseVersion=${{ inputs.releaseVersion }} -Dpassword=${{ secrets.RELEASE_TOKEN }} -Dusername=${{github.actor}}

Expand Down

0 comments on commit d7386d8

Please sign in to comment.