Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions .github/workflows/check-replays.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
uses: actions/cache@v4
with:
path: ${{ env.GAME_PATH }}
key: gamedata-permanent-cache-v3
key: gamedata-permanent-cache-v4

- name: Download Game Data from Cloudflare R2
if: ${{ steps.cache-gamedata.outputs.cache-hit != 'true' }}
Expand Down Expand Up @@ -95,7 +95,8 @@ jobs:
}

Write-Host "Extracting Archive" -ForegroundColor Cyan
& 7z x generals108_gamedata_trimmed.7z -o$env:GENERALS_PATH
$extractPath = $env:GENERALS_PATH
& 7z x generals108_gamedata_trimmed.7z -o"$extractPath"
Remove-Item generals108_gamedata_trimmed.7z -Verbose

# Download GeneralsMD (ZH) Game Files
Expand All @@ -122,7 +123,8 @@ jobs:
}

Write-Host "Extracting Archive" -ForegroundColor Cyan
& 7z x zerohour104_gamedata_trimmed.7z -o$env:GENERALSMD_PATH
$extractPath = $env:GENERALSMD_PATH
& 7z x zerohour104_gamedata_trimmed.7z -o"$extractPath"
Remove-Item zerohour104_gamedata_trimmed.7z -Verbose

- name: Set Up Game Data
Expand Down
Loading