We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dca026e commit 7645a90Copy full SHA for 7645a90
.github/workflows/msbuild.yml
@@ -60,7 +60,8 @@ jobs:
60
Write-Host "Latest Tag: $latest_tag"
61
62
$url = "https://github.com/libxengine/libxengine/releases/download/$latest_tag/XEngine_Windows_x86-32.zip"
63
- Invoke-WebRequest -Uri $url -OutFile "XEngine_Windows_x86-32.zip"
+ Write-Host "Url: $url"
64
+ Invoke-WebRequest -Uri $url -OutFile "./XEngine_Windows_x86-32.zip"
65
Expand-Archive -Path ./XEngine_Windows_x86-32.zip -DestinationPath ./XEngine_Windows_x86-32 -Force
66
67
echo "XENGINE_INCLUDE=${{ github.workspace }}/XEngine_Windows_x86-32" | Out-File -FilePath $env:GITHUB_ENV -Append
0 commit comments