File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed
Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -24,13 +24,20 @@ jobs:
2424 replace : ' version: ${{ github.event.inputs.targetRelease }}'
2525 regex : false
2626 include : " mkdocs.yml"
27- - name : Find and Replace ${{ env.CURRENT_VERSION }} with ${{ github.event.inputs.targetRelease }} in pom.xml
27+ - name : Find and Replace ${{ env.CURRENT_VERSION }} with ${{ github.event.inputs.targetRelease }} in main pom.xml
2828 uses : jacobtomlinson/gha-find-replace@v2
2929 with :
3030 find : ${{ env.CURRENT_VERSION }}
3131 replace : ${{ github.event.inputs.targetRelease }}
3232 regex : false
3333 include : " pom.xml"
34+ - name : Find and Replace ${{ env.CURRENT_VERSION }} with ${{ github.event.inputs.targetRelease }} in modules pom.xml
35+ uses : jacobtomlinson/gha-find-replace@v2
36+ with :
37+ find : ${{ env.CURRENT_VERSION }}
38+ replace : ${{ github.event.inputs.targetRelease }}
39+ regex : false
40+ include : " **/*pom.xml"
3441 - name : Find and Replace ${{ env.CURRENT_VERSION }} with ${{ github.event.inputs.targetRelease }} in build.gradle
3542 uses : jacobtomlinson/gha-find-replace@v2
3643 with :
You can’t perform that action at this time.
0 commit comments