Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci-build-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ jobs:
- name: Upload JAR Artefact
uses: actions/upload-artifact@v4
with:
name: app-jar
name: app.jar
path: build/libs/${{ steps.repo_vars.outputs.artefact_name }}.jar

Build-Docker:
Expand All @@ -119,7 +119,7 @@ jobs:
- name: Download JAR Artefact
uses: actions/download-artifact@v4
with:
name: app-jar
name: app.jar
path: build/libs

- name: Set up Docker Buildx
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ RUN apt-get update \
&& rm -rf /var/lib/apt/lists/*

# ---- Application files ----
COPY build/libs/service-cp-crime-schedulingandlisting-courtschedule-*.jar /opt/app/app.jar
COPY build/libs/*.jar /opt/app/app.jar
COPY lib/applicationinsights.json /opt/app/

# ---- Permissions ----
Expand Down
Loading