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:
53
53
customParameters : ' -debugSymbols false'
54
54
55
55
# 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 }}
60
60
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
+
61
73
# Upload exported build
62
74
- uses : actions/upload-artifact@v4
63
75
with :
You can’t perform that action at this time.
0 commit comments