-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathSign.ps1
76 lines (68 loc) · 2.97 KB
/
Sign.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSAvoidUsingPlainTextForPassword', '', Justification = 'GitHub Secrets are transferred as plain text')]
param(
[Parameter(HelpMessage = "Azure Credentials secret (Base 64 encoded)", Mandatory = $true)]
[string] $AzureCredentialsJson,
[Parameter(HelpMessage = "The path to the files to be signed", Mandatory = $true)]
[String] $PathToFiles,
[Parameter(HelpMessage = "The URI of the timestamp server", Mandatory = $false)]
[string] $TimestampService = "http://timestamp.digicert.com",
[Parameter(HelpMessage = "The digest algorithm to use for signing and timestamping", Mandatory = $false)]
[string] $digestAlgorithm = "sha256"
)
. (Join-Path -Path $PSScriptRoot -ChildPath "..\AL-Go-Helper.ps1" -Resolve)
Import-Module (Join-Path -Path $PSScriptRoot -ChildPath "Sign.psm1" -Resolve)
$Files = Get-ChildItem -Path $PathToFiles -File | Select-Object -ExpandProperty FullName
if (-not $Files) {
Write-Host "No files to sign. Exiting."
return
}
Write-Host "::group::Files to be signed"
$Files | ForEach-Object {
Write-Host "- $_"
}
Write-Host "::endgroup::"
# Get parameters for signing
$AzureCredentials = ConvertFrom-Json ([System.Text.Encoding]::UTF8.GetString([System.Convert]::FromBase64String($AzureCredentialsJson)))
$settings = $env:Settings | ConvertFrom-Json
if ($settings.TrustedSigning.Endpoint -and $settings.TrustedSigning.Account -and $settings.TrustedSigning.CertificateProfile) {
$SigningParams = @{
"SigningEndpoint" = $settings.TrustedSigning.Endpoint
"SigningAccount" = $settings.TrustedSigning.Account
"SigningCertificateProfile" = $settings.TrustedSigning.CertificateProfile
}
}
else {
if ($settings.keyVaultName) {
$AzureKeyVaultName = $settings.keyVaultName
}
elseif ($AzureCredentials.PSobject.Properties.name -eq "keyVaultName") {
$AzureKeyVaultName = $AzureCredentials.keyVaultName
}
else {
throw "KeyVaultName is not specified in AzureCredentials nor in settings. Please specify it in one of them."
}
$SigningParams = @{
"ClientId" = $AzureCredentials.clientId
"TenantId" = $AzureCredentials.tenantId
"KeyVaultName" = $AzureKeyVaultName
"CertificateName" = $settings.keyVaultCodesignCertificateName
}
if ($AzureCredentials.PSobject.Properties.name -eq "clientSecret") {
$SigningParams += @{
"ClientSecret" = $AzureCredentials.clientSecret
}
}
}
InstallAzModuleIfNeeded -name 'Az.Accounts'
ConnectAz -azureCredentials $AzureCredentials
$description = "Signed with AL-Go for GitHub"
$descriptionUrl = "$ENV:GITHUB_SERVER_URL/$ENV:GITHUB_REPOSITORY"
Write-Host "::group::Signing files"
Invoke-SigningTool @SigningParams `
-FilesToSign $PathToFiles `
-Description $description `
-DescriptionUrl $descriptionUrl `
-TimestampService $TimestampService `
-DigestAlgorithm $digestAlgorithm `
-Verbosity "Information"
Write-Host "::endgroup::"