Skip to content

ci: Fix up Replay Checker #1417

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 4, 2025
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