Skip to content

Commit

Permalink
Fixes #332 - Fix release workflow (#337)
Browse files Browse the repository at this point in the history
  • Loading branch information
mnriem authored Aug 19, 2024
1 parent 8b568b3 commit 8280586
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ jobs:
java-version: 21
- name: Build with Maven
run: mvn -B -DskipTests=true -f pom.xml --ntp install
- name: Login to GHCR
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Push to GHCR
run: |
cd docker
Expand Down

0 comments on commit 8280586

Please sign in to comment.