From f0c34576dc765ae22640f6b390b05b27e2f613e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20H=C3=B6glinger-Stelzer?= Date: Tue, 28 Jun 2022 19:16:26 +0200 Subject: [PATCH] Added ARM64 to stage0.ps1 --- stage0.ps1 | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/stage0.ps1 b/stage0.ps1 index 4263a3a..aabf189 100644 --- a/stage0.ps1 +++ b/stage0.ps1 @@ -110,6 +110,9 @@ Get-AppVeyorArtifacts -Account "nefarius" -Project "ViGemBus" -Path $Path -Token # Download x86 binaries Get-AppVeyorArtifacts -Account "nefarius" -Project "ViGemBus" -Path $Path -Token $Token -Branch $BuildVersion -JobName "Platform: x86" +# Download ARM64 binaries +Get-AppVeyorArtifacts -Account "nefarius" -Project "ViGemBus" -Path $Path -Token $Token -Branch $BuildVersion -JobName "Platform: ARM64" + # List of files to sign $files = "`".\artifacts\disk1\*.cab`" " @@ -121,3 +124,4 @@ if ($NoSigning -eq $false) { # Print helper job names for sign portal "ViGemBus x86 v$BuildVersion $(Get-Date -Format "dd.MM.yyyy")" "ViGemBus x64 v$BuildVersion $(Get-Date -Format "dd.MM.yyyy")" +"ViGemBus ARM64 v$BuildVersion $(Get-Date -Format "dd.MM.yyyy")"