1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-14 08:17:13 +03:00

#1009 Force Latest Winsparkle for Builds

This commit is contained in:
David Sangrey 2023-08-31 12:01:17 -04:00
parent d58193f399
commit 264aaeee64
No known key found for this signature in database
GPG Key ID: 3AEADBB0186884BC

View File

@ -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: |