Skip to content

Commit e69aa97

Browse files
authored
Merge branch 'main' into dev/connection-impl
2 parents af41598 + 0aee243 commit e69aa97

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/ci-build-publish.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,20 @@ jobs:
223223
-DCASE_MAPPER_SERVICE_URL=$CASE_MAPPER_SERVICE_URL \
224224
-DCOURT_SCHEDULE_CLIENT_URL=$COURT_SCHEDULE_CLIENT_URL \
225225
-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
226240

227241
Build-Docker:
228242
needs: [ Provider-Deploy, Build, Artefact-Version ]

0 commit comments

Comments
 (0)