mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-23 09:56:23 +03:00
20 lines
961 B
PowerShell
20 lines
961 B
PowerShell
$version=6.0.0-beta.2
|
|
|
|
echo "Renaming the Actions folder and moving it"
|
|
mv yubioath-desktop-* release
|
|
|
|
echo "Signing the executables"
|
|
signtool.exe sign /fd SHA256 /t http://timestamp.digicert.com/scripts/timstamp.dll release/authenticator.exe
|
|
signtool.exe sign /fd SHA256 /t http://timestamp.digicert.com/scripts/timstamp.dll release/helper/authenticator-helper.exe
|
|
|
|
echo "Setting env var and building installer"
|
|
$env:SRCDIR = ".\release\"
|
|
heat dir .\release -out fragment.wxs -gg -scom -srd -sfrag -dr INSTALLDIR -cg ApplicationFiles -var env.SRCDIR
|
|
candle .\fragment.wxs .\resources\win\yubioath-desktop.wxs -ext WixUtilExtension -arch x64
|
|
light fragment.wixobj yubioath-desktop.wixobj -ext WixUIExtension -ext WixUtilExtension -o yubioath-desktop-$version-win64.msi
|
|
|
|
echo "Signing the installer"
|
|
signtool.exe sign /d "Yubico Authenticator" /fd SHA256 /t http://timestamp.digicert.com/scripts/timstamp.dll yubioath-desktop-$version-win64.msi
|
|
|
|
echo "All done"
|