mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2024-12-27 11:59:40 -08:00
57 lines
1.7 KiB
PowerShell
57 lines
1.7 KiB
PowerShell
Param
|
|
(
|
|
[parameter(Mandatory = $true)]
|
|
[ValidateSet('x64', 'arm64', 'x86')]
|
|
[System.String]$Architecture,
|
|
[parameter(Mandatory = $true)]
|
|
[string]
|
|
$Version,
|
|
[parameter(Mandatory = $false)]
|
|
[string]
|
|
$SDKVersion = "10.0.22621.0",
|
|
[switch]$Sign,
|
|
[switch]$Copy
|
|
)
|
|
|
|
$PSDefaultParameterValues['Out-File:Encoding'] = 'UTF8'
|
|
|
|
New-Item -Path "." -Name "dist" -ItemType Directory -ErrorAction SilentlyContinue
|
|
New-Item -Path "." -Name "out" -ItemType Directory -ErrorAction SilentlyContinue
|
|
|
|
if ($Copy) {
|
|
switch ($Architecture) {
|
|
'x86' { $file = "posh-windows-386.exe" }
|
|
'x64' { $file = "posh-windows-amd64.exe" }
|
|
Default { $file = "posh-windows-$Architecture.exe" }
|
|
}
|
|
|
|
# copy the correct architecture to ./dist
|
|
Copy-Item -Path "../../dist/$file" -Destination "./dist/oh-my-posh.exe"
|
|
}
|
|
|
|
# variables
|
|
$env:VERSION = $Version
|
|
|
|
# create MSI
|
|
$fileName = "install-$Architecture.msi"
|
|
$installer = "./out/$fileName"
|
|
wix build -arch $Architecture -out $installer .\oh-my-posh.wxs
|
|
|
|
if ($Sign) {
|
|
# setup dependencies
|
|
nuget.exe install Microsoft.Trusted.Signing.Client -Version 1.0.60 -x
|
|
$signtoolDlib = "$PWD/Microsoft.Trusted.Signing.Client/bin/x64/Azure.CodeSigning.Dlib.dll"
|
|
$signtool = "C:/Program Files (x86)/Windows Kits/10/bin/$SDKVersion/x64/signtool.exe"
|
|
|
|
# clean paths
|
|
$signtool = $signtool -Replace '\\', '/'
|
|
$signtoolDlib = $signtoolDlib -Replace '\\', '/'
|
|
|
|
# sign installer
|
|
& "$signtool" sign /v /debug /fd SHA256 /tr 'http://timestamp.acs.microsoft.com' /td SHA256 /dlib "$signtoolDlib" /dmdf ../../src/metadata.json $installer
|
|
}
|
|
|
|
# get hash
|
|
$zipHash = Get-FileHash $installer -Algorithm SHA256
|
|
$zipHash.Hash | Out-File -Encoding 'UTF8' "$installer.sha256"
|