Post-launch fixes

This commit is contained in:
Marco 2025-05-02 18:12:33 +02:00
commit 62751a66e6
7 changed files with 21 additions and 16 deletions

View file

@ -11,6 +11,8 @@ if (Test-Path $buildDir) {
Remove-Item "$buildDir\*" -Recurse -Force
} else {
New-Item -ItemType Directory -Path $buildDir | Out-Null
New-Item -ItemType Directory -Path $buildDir\win | Out-Null
New-Item -ItemType Directory -Path $buildDir\linux | Out-Null
}
# Step 2: Get version data from GitVersion
@ -38,6 +40,7 @@ if (Test-Path $configFile) {
}
# Step 4: Export the build
& $godotPath --headless --export-release "Windows Desktop" "$buildDir\win\$fileName.exe"
#& $godotPath --headless --export-release "Windows Desktop" "$buildDir\$fileName.exe"
& $godotPath --headless --export-release "Windows Desktop" "$buildDir\win\$fileName.x86_64"
& $godotPath --headless --export-release "Linux" "$buildDir\linux\$fileName.exe"
& $godotPath --headless --export-release "Linux" "$buildDir\linux\$fileName"