Skip to content

Commit

Permalink
github workflow build mvn output filename
Browse files Browse the repository at this point in the history
  • Loading branch information
mP1 committed Oct 23, 2024
1 parent 20f2445 commit 4836fda
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand All @@ -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

0 comments on commit 4836fda

Please sign in to comment.