forked from markeytos/code-sign-action
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathaction.yml
35 lines (34 loc) · 984 Bytes
/
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
name: 'Windows signtool.exe code sign action'
description: 'Sign a file with a pfx certificate.'
branding:
icon: 'award'
color: 'blue'
inputs:
certificate:
description: 'The base64 encoded certificate.'
required: true
folder:
description: 'The folder that contains the files to sign.'
required: true
recursive:
description: 'Recursively search for supported files.'
required: false
password:
description: 'Password to decrypt and import the certificate'
required: true
certificatesha1:
description: 'The sha1 or fingerprint of the certificate'
required: false
certificatename:
description: 'The Name of the certificate'
required: false
description:
description: 'Description of the signed content (signtool /d flag)'
required: false
timestampUrl:
description: 'URL of the timestamp server'
required: false
default: 'http://timestamp.digicert.com'
runs:
using: 'node20'
main: 'dist/index.js'