File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 7070 id : version
7171 run : |
7272 version=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout)
73- echo "::set-output name= release:: $version"
74- echo "::set-output name= releasenumber:: ${version//[!0-9]/}"
73+ echo "release= $version" >> $GITHUB_OUTPUT
74+ echo "releasenumber= ${version//[!0-9]/}" >> $GITHUB_OUTPUT
7575 working-directory : ${{ env.PRIMARY_MAVEN_MODULE }}
7676
7777 - name : Commit and Push
@@ -170,7 +170,7 @@ jobs:
170170 - name : Get version
171171 id : version
172172 run : |
173- echo "::set-output name= release:: $(mvn help:evaluate -Dexpression=project.version -q -DforceStdout)"
173+ echo "release= $(mvn help:evaluate -Dexpression=project.version -q -DforceStdout)" >> $GITHUB_OUTPUT
174174 working-directory : ${{ env.PRIMARY_MAVEN_MODULE }}
175175
176176 - name : Upload Release Asset
Original file line number Diff line number Diff line change 6060 echo "Deleting origin branch that contains the updates - if present"
6161 git push -f origin --delete ${{ env.UPDATE_BRANCH }} || true
6262
63- echo "::set-output name= abort::1"
63+ echo "abort=1" >> $GITHUB_OUTPUT
6464 exit 0
6565 fi
6666
7676 echo "Getting current branch"
7777 current_branch=$(git branch --show-current)
7878 echo "Current branch is $current_branch"
79- echo "::set-output name= current_branch:: $current_branch"
79+ echo "current_branch= $current_branch" >> $GITHUB_OUTPUT
8080
81- echo "::set-output name= abort::0"
81+ echo "abort=0" >> $GITHUB_OUTPUT
8282
8383 - name : pull-request
8484 uses : repo-sync/pull-request@v2
You can’t perform that action at this time.
0 commit comments