File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 46
46
uses : actions/cache@v4
47
47
with :
48
48
path : ${{ env.GAME_PATH }}
49
- key : gamedata-permanent-cache-v3
49
+ key : gamedata-permanent-cache-v4
50
50
51
51
- name : Download Game Data from Cloudflare R2
52
52
if : ${{ steps.cache-gamedata.outputs.cache-hit != 'true' }}
95
95
}
96
96
97
97
Write-Host "Extracting Archive" -ForegroundColor Cyan
98
- & 7z x generals108_gamedata_trimmed.7z -o$env:GENERALS_PATH
98
+ $extractPath = $env:GENERALS_PATH
99
+ & 7z x generals108_gamedata_trimmed.7z -o"$extractPath"
99
100
Remove-Item generals108_gamedata_trimmed.7z -Verbose
100
101
101
102
# Download GeneralsMD (ZH) Game Files
@@ -122,7 +123,8 @@ jobs:
122
123
}
123
124
124
125
Write-Host "Extracting Archive" -ForegroundColor Cyan
125
- & 7z x zerohour104_gamedata_trimmed.7z -o$env:GENERALSMD_PATH
126
+ $extractPath = $env:GENERALSMD_PATH
127
+ & 7z x zerohour104_gamedata_trimmed.7z -o"$extractPath"
126
128
Remove-Item zerohour104_gamedata_trimmed.7z -Verbose
127
129
128
130
- name : Set Up Game Data
You can’t perform that action at this time.
0 commit comments