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 ec8043f commit 517c3fcCopy full SHA for 517c3fc
.github/workflows/build.yml
@@ -50,6 +50,15 @@ jobs:
50
run: dotnet publish ${{ env.PROJECT }} -c Release -o ${{matrix.OUTPUTDIR}} -p:PublishReadyToRun=true --self-contained true -p:PublishSingleFile=true -p:IncludeNativeLibrariesForSelfExtract=true -p:UseAppHost=true -r ${{matrix.RUNTIMEID}}
51
working-directory: Source/${{ env.SOLUTION_DIR }}
52
53
+ - name: Delete PDB files
54
+ working-directory: Source/${{ env.SOLUTION_DIR }}
55
+ run: |
56
+ if [[ "${{ runners.os }}" == 'Linux' ]]; then
57
+ find . -name '*.pdb' -delete
58
+ elif [[ "${{ runners.os }}" == 'Windows' ]]; then
59
+ del /Q /F *.pdb
60
+ fi
61
+
62
- uses: vimtor/action-zip@v1
63
with:
64
files: ./Source/${{ env.SOLUTION_DIR }}/${{matrix.OUTPUTDIR}}/
0 commit comments