Skip to content

Commit

Permalink
Fixes #241 - Fix build workflow (#250)
Browse files Browse the repository at this point in the history
  • Loading branch information
mnriem authored Jan 29, 2025
1 parent 5c9f22e commit dbeb4b2
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ jobs:
distribution: 'temurin'
java-version: 21
- name: Build with Maven
run: mvn -B --ntp package
run: |
mvn -B --ntp install
mvn -B --ntp -P docker docker:build
- name: Login to GHCR
if: github.ref == 'refs/heads/current'
uses: docker/login-action@v2
Expand All @@ -29,5 +31,4 @@ jobs:
- name: Push to GHCR
if: github.ref == 'refs/heads/current'
run: |
cd repo
mvn --ntp -P docker install docker:build docker:push
mvn -B --ntp -P docker install docker:build docker:push

0 comments on commit dbeb4b2

Please sign in to comment.