-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
migrate to use AzureSignTool + Azure Key Vault for code signing
- Loading branch information
Marc-André Moreau
committed
Aug 30, 2023
1 parent
b2a3849
commit 79dcde6
Showing
5 changed files
with
47 additions
and
95 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -336,19 +336,6 @@ class TlkRecipe | |
|
||
if ($DestinationExecutable) { | ||
Copy-Item -Path $SrcExecutablePath -Destination $DestinationExecutable | ||
|
||
if (Test-Path Env:SIGNTOOL_NAME) { | ||
$SignToolName = $Env:SIGNTOOL_NAME | ||
$TimestampServer = 'http://timestamp.comodoca.com/?td=sha256' | ||
$SignToolArgs = @( | ||
'sign', '/fd', 'SHA256', '/v', | ||
'/n', $SignToolName, | ||
'/tr', $TimestampServer, | ||
'/td', 'sha256', | ||
$DestinationExecutable | ||
) | ||
& 'signtool' $SignToolArgs | Out-Host | ||
} | ||
} | ||
|
||
Pop-Location | ||
|
@@ -449,19 +436,6 @@ class TlkRecipe | |
if (Test-Path Env:DGATEWAY_PACKAGE) { | ||
$DGatewayPackage = $Env:DGATEWAY_PACKAGE | ||
Copy-Item -Path "$($this.PackageName).msi" -Destination $DGatewayPackage | ||
|
||
if (Test-Path Env:SIGNTOOL_NAME) { | ||
$SignToolName = $Env:SIGNTOOL_NAME | ||
$TimestampServer = 'http://timestamp.comodoca.com/?td=sha256' | ||
$SignToolArgs = @( | ||
'sign', '/fd', 'SHA256', '/v', | ||
'/n', $SignToolName, | ||
'/tr', $TimestampServer, | ||
'/td', 'sha256', | ||
$DGatewayPackage | ||
) | ||
& 'signtool' $SignToolArgs | Out-Host | ||
} | ||
} | ||
|
||
Pop-Location | ||
|
@@ -471,7 +445,7 @@ class TlkRecipe | |
$DebianArchitecture = $this.Target.DebianArchitecture() | ||
$Packager = "Devolutions Inc." | ||
$Email = "[email protected]" | ||
$Website = "http://wayk.devolutions.net" | ||
$Website = "https://devolutions.net" | ||
$PackageVersion = $this.Version | ||
$DistroCodeName = "xenial" # Ubuntu 16.04 | ||
$Dependencies = @('liblzma5', 'liblz4-1', '${shlibs:Depends}', '${misc:Depends}') | ||
|