Skip to content

Commit a43ac3f

Browse files
authored
Remov debug symbols
1 parent a0b9a49 commit a43ac3f

File tree

1 file changed

+16
-4
lines changed

1 file changed

+16
-4
lines changed

.github/workflows/main.yml

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff 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:

0 commit comments

Comments
 (0)