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 559d5f5 commit 25213d1Copy full SHA for 25213d1
ci/download-cadeau.ps1
@@ -7,7 +7,9 @@ param(
7
8
[Parameter(Mandatory=$true)]
9
[ValidateSet('x64', 'arm64')]
10
- [string] $Architecture
+ [string] $Architecture,
11
+
12
+ [string] $VersionTag = "v2025.7.16.0"
13
)
14
15
$ErrorActionPreference = "Stop"
@@ -18,7 +20,7 @@ $tmpFolder = [System.IO.Path]::GetTempPath() + [System.Guid]::NewGuid()
18
20
Write-Host "Temporary directory: $tmpFolder"
19
21
New-Item -ItemType Directory -Path "$tmpFolder" | Out-Null
22
-$downloadUrl = "https://github.com/Devolutions/cadeau/releases/download/v2025.2.21.0/cadeau-$Platform-$Architecture.zip"
23
+$downloadUrl = "https://github.com/Devolutions/cadeau/releases/download/$VersionTag/cadeau-$Platform-$Architecture.zip"
24
Write-Host "Download URL: $downloadUrl"
25
26
try
0 commit comments