File tree Expand file tree Collapse file tree 1 file changed +16
-4
lines changed
Expand file tree Collapse file tree 1 file changed +16
-4
lines changed Original file line number Diff line number Diff line change @@ -53,11 +53,23 @@ jobs:
5353 customParameters : ' -debugSymbols false'
5454
5555 # Cache built project to avoid re-uploading unchanged builds
56- - uses : actions/cache@v4
57- with :
58- path : exported
59- key : build-output-${{ github.sha }}
56+ # - uses: actions/cache@v4
57+ # with:
58+ # path: exported
59+ # key: build-output-${{ github.sha }}
6060
61+ # Remove debug symbols (ChuniXR_BackUpThisFolder_ButDontShipItWithYourGame)
62+ - name : Remove Debug Symbols
63+ run : |
64+ $debug_symbols_path = "exported/ChuniXR_BackUpThisFolder_ButDontShipItWithYourGame"
65+ if (Test-Path $debug_symbols_path) {
66+ Remove-Item -Recurse -Force $debug_symbols_path
67+ Write-Host "Debug symbols folder removed."
68+ } else {
69+ Write-Host "Debug symbols folder not found."
70+ }
71+ shell : powershell
72+
6173 # Upload exported build
6274 - uses : actions/upload-artifact@v4
6375 with :
You can’t perform that action at this time.
0 commit comments