.github/workflows: Fix duplicate key in testing CI

This has been broken and not running tests since d580bd3 (just a few
days ago).
This commit is contained in:
Eric Anderson 2023-04-13 12:43:49 -07:00
parent e12baed5a9
commit 9af202fbd0
1 changed files with 3 additions and 2 deletions

View File

@ -58,8 +58,9 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: Test Reports (JRE ${{ matrix.jre }})
path: ./*/build/reports/tests/**
path: ./*/*/build/reports/tests/**
path: |
./*/build/reports/tests/**
./*/*/build/reports/tests/**
retention-days: 14
- name: Check for modified codegen
run: test -z "$(git status --porcelain)" || (git status && echo Error Working directory is not clean. Forget to commit generated files? && false)