Skip to content
This repository has been archived by the owner on Sep 24, 2024. It is now read-only.

Commit

Permalink
Fixes #176 - Update to latest Piranha version
Browse files Browse the repository at this point in the history
  • Loading branch information
mnriem committed Dec 22, 2023
1 parent a5bce0f commit fd8e2b8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,11 @@ jobs:
java-version: 21
- name: Build with Maven
run: mvn -B --ntp package
- name: Login to Docker Hub
- name: Login to GHCR
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Push to Docker Hub
- name: Push to GHCR
run: mvn -B -DskipTests=true -DskipITs=true -ntp -P docker docker:build docker:push
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@ jobs:
java-version: 21
- name: Build with Maven
run: mvn -B -DskipTests -ntp install
- name: Login to Docker Hub
- name: Login to GHCR
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Push to Docker Hub
- name: Push to GHCR
run: mvn -B -DskipTests=true -DskipITs=true -ntp -P docker docker:build docker:push

0 comments on commit fd8e2b8

Please sign in to comment.