File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,11 +5,6 @@ permissions: {}
55on :
66 workflow_call :
77 inputs :
8- # it is required for backwards compatibility with CI/CD pipelines that have not been yet fully migrated to shared workflows
9- uploadJarArtifact :
10- required : false
11- type : boolean
12- default : false
138 performRelease :
149 required : false
1510 type : boolean
@@ -157,13 +152,6 @@ jobs:
157152 env :
158153 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
159154
160- - name : Upload .jar artifact
161- if : ${{ inputs.uploadJarArtifact }}
162- uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
163- with :
164- name : ' app.jar'
165- path : ' /app/app.jar'
166-
167155 release :
168156 name : Build & push Docker image
169157 needs : ci
Original file line number Diff line number Diff line change @@ -5,16 +5,6 @@ permissions: {}
55on :
66 workflow_call :
77 inputs :
8- uploadJarArtifact :
9- required : false
10- type : boolean
11- default : false
12- jarArtifactName :
13- required : false
14- type : string
15- jarArtifactPath :
16- required : false
17- type : string
188 performRelease :
199 required : false
2010 type : boolean
@@ -143,13 +133,6 @@ jobs:
143133 fail_ci_if_error : true
144134 report_type : test_results
145135
146- - name : Upload .jar artifact
147- if : ${{ inputs.uploadJarArtifact }}
148- uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
149- with :
150- name : ${{ inputs.jarArtifactName }}
151- path : ${{ inputs.jarArtifactPath }}
152-
153136 - name : Build artifact
154137 run : ./gradlew build -x test
155138 env :
You can’t perform that action at this time.
0 commit comments