File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -50,18 +50,20 @@ jobs:
5050 -p:UseAppHost=true
5151 -o publish/${{ matrix.os }}/${{ matrix.arch }}-${{ env.environment }}
5252
53- - name : Remove platform-specific files (Windows)
53+ - name : Remove platform-specific and debug files (Windows)
5454 if : matrix.os == 'windows'
5555 run : |
5656 Remove-Item -Path "publish/${{ matrix.os }}/${{ matrix.arch }}-${{ env.environment }}/*.dylib" -Force -ErrorAction SilentlyContinue
5757 Remove-Item -Path "publish/${{ matrix.os }}/${{ matrix.arch }}-${{ env.environment }}/*.so" -Force -ErrorAction SilentlyContinue
58+ Remove-Item -Path "publish/${{ matrix.os }}/${{ matrix.arch }}-${{ env.environment }}/*.pdb" -Force -ErrorAction SilentlyContinue
5859 shell : pwsh
5960
60- - name : Remove platform-specific files (macOS)
61+ - name : Remove platform-specific and debug files (macOS)
6162 if : matrix.os == 'macos'
6263 run : |
6364 rm -f publish/${{ matrix.os }}/${{ matrix.arch }}-${{ env.environment }}/UnityFileSystemApi.dll
6465 rm -f publish/${{ matrix.os }}/${{ matrix.arch }}-${{ env.environment }}/*.so
66+ rm -f publish/${{ matrix.os }}/${{ matrix.arch }}-${{ env.environment }}/*.pdb
6567 shell : bash
6668
6769 - name : Upload artifact
You can’t perform that action at this time.
0 commit comments