Skip to content

Commit

Permalink
fix path to maven in workflow to for build without tests
Browse files Browse the repository at this point in the history
  • Loading branch information
MrSebastian committed Apr 7, 2024
1 parent 4d4dd04 commit 3ea53f7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/create-ghcr-image-from-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
distribution: 'temurin'

- name: build jar without tests
run: mvn -B -ntp -DskipTests package
run: mvn -B -ntp -DskipTests package -f ${{ steps.getTagNameParts.outputs.service }}/pom.xml

- name: Log in to the Container registry
uses: docker/login-action@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create-release-from-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
distribution: 'temurin'

- name: build jar without tests
run: mvn -B -ntp -DskipTests package
run: mvn -B -ntp -DskipTests package -f ${{ steps.getTagNameParts.outputs.service }}/pom.xml

- name: Create GitHub Release
id: create_release
Expand Down

0 comments on commit 3ea53f7

Please sign in to comment.