-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.yml
50 lines (49 loc) · 1.62 KB
/
action.yml
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
name: "GoodKey Windows Code Signing"
description: "Automated code signing for Windows using the GoodKey service."
branding:
icon: "lock"
color: "green"
inputs:
organization:
description: "The organization identifier."
required: true
token:
description: "The GoodKey API token."
required: true
certificate:
description: "SHA-1 thumbprint of the certificate to use for signing."
required: true
file:
description: "The file to sign."
required: true
timestamp_url:
description: "The URL of the time stamp server."
required: false
default: ""
timestamp_rfc3161_url:
description: "The URL of the RFC 3161 time stamp server."
required: false
default: ""
timestamp_digest_algorithm:
description: "Specifies the digest algorithm to use for creating time stamps."
required: false
default: ""
description:
description: "Specifies a description of the signed content."
required: false
default: ""
description_url:
description: "Specifies a URL for the expanded description of the signed content."
required: false
default: ""
additional_certificates:
description: "List of additional certificates to include in the signature. The certificates should be in a PEM chain format, with each certificate enclosed between 'BEGIN CERTIFICATE' and 'END CERTIFICATE' lines, without any additional characters or spaces."
required: false
default: ""
file_digest_algorithm:
description: "Specifies the file digest algorithm to use for creating file signatures."
required: false
default: "sha256"
runs:
using: "node20"
main: "dist/index.js"