File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -75,13 +75,13 @@ jobs:
75
75
- name : Create a ${{ inputs.phase }} release branch
76
76
run : git checkout -b ${{ env.BRANCH_NAME }}
77
77
78
- - name : Pre bump versions (pre phase )
78
+ - name : Set release version (pre release )
79
79
if : inputs.phase == 'pre'
80
80
uses : ./.github/workflows/maven-goal
81
81
with :
82
82
command : ./mvnw -V versions:set -DprocessAllModules=true -DgenerateBackupPoms=false -DnewVersion=${{ env.RELEASE_VERSION }}
83
83
84
- - name : Post bump versions (post phase )
84
+ - name : Set next snapshot version (post release )
85
85
if : inputs.phase == 'post'
86
86
uses : ./.github/workflows/maven-goal
87
87
with :
90
90
- name : Push the ${{ inputs.phase }} release branch
91
91
run : |
92
92
git add --all
93
- git commit -m "release( ${{ inputs.phase }}) : ecs-logging-java v${{ env.RELEASE_VERSION }}"
93
+ git commit -m "${{ inputs.phase }} release : ecs-logging-java v${{ env.RELEASE_VERSION }}"
94
94
git push origin ${{ env.BRANCH_NAME }}
95
95
96
96
- name : Create the ${{ inputs.phase }} release PR
You can’t perform that action at this time.
0 commit comments