mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-05 00:15:44 +00:00
Install WiX v5.0.2 to build the Windows installer
To avoid failures such as
https://github.com/containers/podman/actions/runs/24401569105/job/71274410909#step:10:78
use version v5.0.2 of WiX as we do in CI images:
fe80516848/win_images/win_packaging.ps1 (L27)
Related to issue https://github.com/containers/podman/issues/27042
Signed-off-by: Mario Loriedo <mario.loriedo@gmail.com>
This commit is contained in:
parent
e5f484964a
commit
53fc1d902e
2 changed files with 3 additions and 3 deletions
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
|
|
@ -180,7 +180,7 @@ jobs:
|
|||
go-version: stable
|
||||
cache: false
|
||||
- name: Set up WiX
|
||||
run: dotnet tool install --global wix
|
||||
run: dotnet tool install --global wix --version 5.0.2
|
||||
- name: Setup Signature Tooling
|
||||
env:
|
||||
AZ_CERT_NAME: ${{ secrets.AZ_CERT_NAME }}
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@
|
|||
.NOTES
|
||||
Requirements:
|
||||
- .NET SDK (https://dotnet.microsoft.com/download)
|
||||
- WiX Toolset (install: dotnet tool install --global wix)
|
||||
- WiX Toolset (install: dotnet tool install --global wix --version 5.0.2)
|
||||
|
||||
Environment Variables for signing (optional):
|
||||
$ENV:VAULT_ID $ENV:APP_ID $ENV:TENANT_ID
|
||||
|
|
@ -114,7 +114,7 @@ Invoke-Expression 'dotnet tool list --global wix' `
|
|||
if ($LASTEXITCODE -ne 0) {
|
||||
Write-Error ("Required dep `"Wix Toolset`" is not installed. " `
|
||||
+ 'Please install it with the command ' `
|
||||
+ "`"dotnet tool install --global wix`"")
|
||||
+ "`"dotnet tool install --global wix --version 5.0.2`"")
|
||||
Exit 1
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue