Skip to content

Commit

Permalink
add working dir to mv step
Browse files Browse the repository at this point in the history
  • Loading branch information
lpinheiroms committed Jan 17, 2025
1 parent a733e90 commit 86f054c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,12 +144,13 @@ jobs:
- name: Move coverage file (optional)
run: |
mv ${{ matrix.package }}/coverage.xml coverage_${{ env.PKG_NAME }}.xml
working-directory: ./python

- name: Upload coverage artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage-${{ env.PKG_NAME }}
path: coverage_${{ env.PKG_NAME }}.xml
path: ./python/coverage_${{ env.PKG_NAME }}.xml

codecov:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 86f054c

Please sign in to comment.