From 632c2b7dc8101cbad0b32a08a20b783e871672f2 Mon Sep 17 00:00:00 2001 From: Michael Barry Date: Sun, 2 Jun 2024 07:15:45 -0400 Subject: [PATCH] Fix maven commands (#167) --- .github/workflows/maven.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index f2afe06..b0aacbf 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -48,10 +48,10 @@ jobs: # Skip spotless since that gets checked in a separate task - name: Build with mvnw (linux/mac) if: ${{ !contains(matrix.os, 'windows') }} - run: ./mvnw ${{matrix.args}} -Dspotless.check.skip --batch-mode -no-transfer-progress package verify jib:buildTar --file pom.xml + run: ./mvnw ${{matrix.args}} -Dspotless.check.skip --batch-mode -no-transfer-progress verify jib:buildTar --file pom.xml - name: Build with mvnw.cmd (windows) if: ${{ contains(matrix.os, 'windows') }} - run: mvnw.cmd ${{matrix.args}} -Dspotless.check.skip --batch-mode -no-transfer-progress package verify jib:buildTar --file pom.xml + run: mvnw.cmd ${{matrix.args}} -Dspotless.check.skip --batch-mode -no-transfer-progress verify jib:buildTar --file pom.xml shell: cmd regenerate: @@ -127,7 +127,7 @@ jobs: cache: 'maven' - name: Build and test this branch working-directory: planetiler - run: ./mvnw -Dimage.version=CI_ONLY --batch-mode -no-transfer-progress verify package jib:dockerBuild --file pom.xml + run: ./mvnw -Dimage.version=CI_ONLY --batch-mode -no-transfer-progress verify jib:dockerBuild --file pom.xml - name: 'Download data (java)' working-directory: planetiler run: java -jar planetiler-dist/target/*with-deps.jar --only-download --area=monaco