This commit is contained in:
2025-07-19 19:45:57 +10:00
parent 8bd7fa1585
commit 003dcc7cf9
2 changed files with 46 additions and 0 deletions

View File

@@ -30,6 +30,27 @@ jobs:
Write-Host "Project file exists: $(Test-Path 'project.godot')"
Get-ChildItem -Path . -Filter "*.cfg" | Select-Object Name
- name: Setup Export Templates
run: |
$templateDir = "C:\WINDOWS\ServiceProfiles\NetworkService\AppData\Roaming\Godot\export_templates\4.4.1.stable"
if (-not (Test-Path $templateDir)) {
Write-Host "Creating export template directory..."
New-Item -ItemType Directory -Force -Path $templateDir
Write-Host "Downloading export templates..."
Invoke-WebRequest -Uri "https://downloads.tuxfamily.org/godotengine/4.4.1/Godot_v4.4.1-stable_export_templates.tpz" -OutFile "templates.tpz"
Write-Host "Extracting templates..."
Expand-Archive -Path "templates.tpz" -DestinationPath "temp_templates" -Force
Copy-Item -Path "temp_templates\templates\*" -Destination $templateDir -Recurse -Force
Remove-Item -Path "temp_templates" -Recurse -Force
Remove-Item -Path "templates.tpz" -Force
Write-Host "Export templates installed to: $templateDir"
} else {
Write-Host "Export templates already exist at: $templateDir"
}
- name: Windows Build
run: .\build-windows.bat
shell: cmd