mirror of
https://github.com/EDCD/EDMarketConnector.git
synced 2025-04-15 00:30:33 +03:00
Merge pull request #2072 from HullSeals/enhancement/1009/pin-latest-winsparkle
Force Latest Winsparkle for Builds
This commit is contained in:
commit
20a603510b
15
.github/workflows/windows-build.yml
vendored
15
.github/workflows/windows-build.yml
vendored
@ -103,11 +103,18 @@ jobs:
|
||||
pip install wheel
|
||||
pip install -r requirements-dev.txt
|
||||
|
||||
- name: Download winsparkle
|
||||
- name: Download latest WinSparkle release
|
||||
run: |
|
||||
Invoke-Webrequest -UseBasicParsing https://github.com/vslavik/winsparkle/releases/download/v0.8.0/WinSparkle-0.8.0.zip -OutFile out.zip
|
||||
Expand-Archive out.zip
|
||||
Move-Item 'out\WinSparkle-0.8.0\Release\*' '.\'
|
||||
$url = "https://api.github.com/repos/vslavik/winsparkle/releases/latest"
|
||||
$response = Invoke-RestMethod -Uri $url
|
||||
$latestAsset = $response.assets | Where-Object { $_.name -match "WinSparkle.*\.zip" -and $_.name -notmatch "-src" }
|
||||
|
||||
$downloadUrl = $latestAsset.browser_download_url
|
||||
Invoke-WebRequest -Uri $downloadUrl -OutFile WinSparkle-Latest.zip
|
||||
|
||||
Expand-Archive -Path WinSparkle-Latest.zip -DestinationPath .
|
||||
$extractedFolder = Get-ChildItem -Filter "WinSparkle-*" -Directory
|
||||
Move-Item -Path "$($extractedFolder.FullName)\Release\*" -Destination .
|
||||
|
||||
- name: Build EDMC
|
||||
run: |
|
||||
|
Loading…
x
Reference in New Issue
Block a user