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
@@ -173,13 +168,6 @@ jobs:
173168 env :
174169 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
175170
176- - name : Upload .jar artifact
177- if : ${{ inputs.uploadJarArtifact }}
178- uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
179- with :
180- name : ' app.jar'
181- path : ' /app/app.jar'
182-
183171 release :
184172 name : Build & push Docker image
185173 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
@@ -159,13 +149,6 @@ jobs:
159149 fail_ci_if_error : true
160150 report_type : test_results
161151
162- - name : Upload .jar artifact
163- if : ${{ inputs.uploadJarArtifact }}
164- uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
165- with :
166- name : ${{ inputs.jarArtifactName }}
167- path : ${{ inputs.jarArtifactPath }}
168-
169152 - name : Build artifact
170153 run : ./gradlew build -x test
171154 env :
You can’t perform that action at this time.
0 commit comments