File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -23,11 +23,12 @@ jobs:
2323 - name : Update Version Number
2424 env :
2525 GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
26+ NEXT_VERSION : ${{ inputs.nextVersion }}
2627 run : |
2728 git config user.name "${GITHUB_ACTOR}"
2829 git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
2930 git checkout -b gh-action/next-iteration
30- mvn versions:set --batch-mode -DgenerateBackupPoms=false -DnewVersion="${{ inputs.nextVersion } }"
31+ mvn versions:set --batch-mode -DgenerateBackupPoms=false -DnewVersion="${NEXT_VERSION }"
3132 git commit -m 'Prepare next development iteration' -a
3233 git push --set-upstream origin gh-action/next-iteration
3334 gh pr create -B master --title 'Prepare next development iteration' --body ''
You can’t perform that action at this time.
0 commit comments