We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bda682b commit c984545Copy full SHA for c984545
.github/workflows/build.yml
@@ -52,14 +52,14 @@ jobs:
52
53
- name: Delete PDB files (Linux)
54
if: runner.os == 'Linux'
55
- working-directory: Source/${{ env.SOLUTION_DIR }}
+ working-directory: ${{matrix.OUTPUTDIR}}
56
run: |
57
find . -name '*.pdb' -delete
58
59
- name: Delete PDB files (Windows)
60
if: runner.os == 'Windows'
61
62
- run: Remove-Item -Path '*.pdb' -Force
+ run: Remove-Item -Path '*.pdb' -Force -Recurse
63
shell: pwsh
64
65
- uses: vimtor/action-zip@v1
0 commit comments