Skip to content

Commit

Permalink
👷 Working on getting the nightly build running successfully
Browse files Browse the repository at this point in the history
Signed-off-by: Marcus Fihlon <marcus@fihlon.swiss>
  • Loading branch information
McPringle committed Oct 19, 2024
1 parent f476a79 commit 32fd3a5
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/docker-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
echo "defined=false" >> $GITHUB_OUTPUT;
fi
docker:
build-publish:
if: needs.check-build.outputs.last-build-sha != github.sha && needs.check-secrets.outputs.defined == 'true'
runs-on: ubuntu-latest
name: Build and push Docker image
Expand All @@ -51,6 +51,12 @@ jobs:
- name: Check out the repo
uses: actions/checkout@v4

- name: Install Java 21
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'

- name: Build with Maven
run: ./mvnw clean package -Pproduction -e

Expand Down

0 comments on commit 32fd3a5

Please sign in to comment.