Skip to content

Commit

Permalink
Fix test results upload.
Browse files Browse the repository at this point in the history
  • Loading branch information
wasabii committed Oct 10, 2023
1 parent 3918e39 commit b3dcee4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/IKVM.Maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -224,14 +224,14 @@ jobs:
}
- name: Archive Test Results
if: always() && startsWith(env.RET, 'TestResults--')
run: tar czvf TestResults.tar.gz TestResults
working-directory: ${{ env.WORKPATH }}
run: tar czvf ${{ env.TMPDIR }}/TestResults.tar.gz TestResults
working-directory: ${{ env.IKVMPATH }}
- name: Upload Test Results
if: always() && startsWith(env.RET, 'TestResults--')
uses: actions/upload-artifact@v3
with:
name: ${{ env.RET }}
path: TestResults.tar.gz
path: ${{ env.TMPDIR }}/TestResults.tar.gz
release:
name: Release
if: github.event_name != 'pull_request'
Expand Down

0 comments on commit b3dcee4

Please sign in to comment.