File tree 1 file changed +8
-1
lines changed 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -24,13 +24,20 @@ jobs:
24
24
replace : ' version: ${{ github.event.inputs.targetRelease }}'
25
25
regex : false
26
26
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
28
28
uses : jacobtomlinson/gha-find-replace@v2
29
29
with :
30
30
find : ${{ env.CURRENT_VERSION }}
31
31
replace : ${{ github.event.inputs.targetRelease }}
32
32
regex : false
33
33
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"
34
41
- name : Find and Replace ${{ env.CURRENT_VERSION }} with ${{ github.event.inputs.targetRelease }} in build.gradle
35
42
uses : jacobtomlinson/gha-find-replace@v2
36
43
with :
You can’t perform that action at this time.
0 commit comments