Skip to content

Commit

Permalink
Maybe fix zipping
Browse files Browse the repository at this point in the history
  • Loading branch information
MatKuhr committed Aug 16, 2023
1 parent 65005b2 commit 3b156dc
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,8 @@ jobs:
# Target
- name: ZIP Target Dirs
run: |
zip -r target.zip -i ./**/target/
zip -r target.zip $(find . -path './**/target/**/*')
unzip -l target.zip
- name: Upload Target Dirs
uses: actions/upload-artifact@v3
with:
Expand Down Expand Up @@ -156,7 +157,7 @@ jobs:
matrix:
task:
- { "name": "Test", "command": "test jacoco:report" }
- { "name": "PMD", "command": "torg.apache.maven.plugins:maven-pmd-plugin:pmd" }
- { "name": "PMD", "command": "org.apache.maven.plugins:maven-pmd-plugin:pmd" }
- { "name": "Spotbugs", "command": "com.github.spotbugs:spotbugs-maven-plugin:spotbugs" }
name: ${{ matrix.task.name }}
steps:
Expand Down

0 comments on commit 3b156dc

Please sign in to comment.