From 4836fda7db34552f55ce43839472d85a3ad2b402 Mon Sep 17 00:00:00 2001 From: Miroslav Pokorny Date: Wed, 23 Oct 2024 15:25:53 +1100 Subject: [PATCH] github workflow build mvn output filename --- .github/workflows/build.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index b4c5b7d..b9854b8 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -24,13 +24,13 @@ jobs: run: mvn dependency:resolve - name: Maven install - run: mvn install -Dmaven.javadoc.skip=true -B -V -e > it-output.txt + run: mvn install -Dmaven.javadoc.skip=true -B -V -e > maven-install.txt - name: Print logs if: ${{ always() }} run: | tail -n 500 target/it-tests/junit-test/build.log - tail -n 500 it-output.txt + tail -n 500 maven-install.txt - uses: actions/upload-artifact@v4 if: failure() @@ -41,5 +41,5 @@ jobs: - uses: actions/upload-artifact@v4 if: failure() with: - name: walkingkooka-spreadsheet-it-output.txt - path: it-output.txt + name: walkingkooka-spreadsheet-maven-install.txt + path: maven-install.txt