Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixS90 committed Jul 26, 2024
1 parent 15e1c6c commit f062a2f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,11 +84,11 @@ jobs:
- name: Move coverage file for upload
if: success() || failure()
run: |-
$dest = ${{ github.workspace }}\TestResults
$dest = "${{ github.workspace }}\TestResults"
if (-Not (Test-Path -Path $dest)) {
New-Item -ItemType "directory" -Path $dest
}
Move-Item -Path ${{ runner.temp }}\cov_results\cov.xml -Destination $dest\coverage.xml
Move-Item -Path "${{ runner.temp }}\cov_results\cov.xml" -Destination "$dest\coverage.xml"
shell: pwsh
- name: Upload Coverage
if: success() || failure()
Expand Down

0 comments on commit f062a2f

Please sign in to comment.