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
9 changes: 5 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ concurrency: Testing
on:
# Triggers the workflow on push or pull request events but only for the dev branch
push:
branches: [ prod ]
branches: [ dev ]
pull_request:
branches: [ prod ]
branches: [ dev ]
workflow_dispatch:

env:
Expand All @@ -31,11 +31,12 @@ jobs:
- uses: actions/checkout@v2

- name: Set up JDK 21
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
java-version: 21
distribution: 'temurin'

# - name: Set up Go
# - name: Set up Go
# uses: actions/setup-go@v3
# with:
# go-version: 1.18
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM amazoncorretto:21.0.9 as runner
FROM eclipse-temurin:21 as runner
WORKDIR runner
COPY **/target/app.jar runner/
CMD java -jar runner/app.jar
Loading