1
0
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:
Phoebe 2023-09-01 14:44:47 -07:00 committed by GitHub
commit 20a603510b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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