We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents af41598 + 0aee243 commit e69aa97Copy full SHA for e69aa97
.github/workflows/ci-build-publish.yml
@@ -223,6 +223,20 @@ jobs:
223
-DCASE_MAPPER_SERVICE_URL=$CASE_MAPPER_SERVICE_URL \
224
-DCOURT_SCHEDULE_CLIENT_URL=$COURT_SCHEDULE_CLIENT_URL \
225
-DCJSCPPUID=$CJSCPPUID
226
+ fi
227
+
228
+ - name: Extract repo name
229
+ id: repo_vars
230
+ run: |
231
+ repo_name=${GITHUB_REPOSITORY##*/}
232
+ echo "repo_name=${repo_name}" >> $GITHUB_OUTPUT
233
+ echo "artefact_name=${repo_name}-${{ needs.Artefact-Version.outputs.artefact_version }}" >> $GITHUB_OUTPUT
234
235
+ - name: Upload JAR Artefact
236
+ uses: actions/upload-artifact@v4
237
+ with:
238
+ name: app.jar
239
+ path: build/libs/${{ steps.repo_vars.outputs.artefact_name }}.jar
240
241
Build-Docker:
242
needs: [ Provider-Deploy, Build, Artefact-Version ]
0 commit comments