forked from GabrielAcostaEngler/signtool-code-sign
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
33 lines (33 loc) · 975 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
name: 'Windows Code Signing with signtool'
description: 'Sign files with with a pfx certificate using signtool'
author: 'Gabriel Acosta & Michael Scrivo'
branding:
icon: 'award'
color: 'gray-dark'
inputs:
certificate:
description: 'Base64 encoded pfx certificate'
required: true
cert-password:
description: 'Certificate password'
required: true
cert-sha1:
description: 'Certificate sha1/thumbprint'
required: true
cert-description:
description: 'Add a description to the files being signed'
required: false
folder:
description: 'path to folder containing files to sign.'
required: true
recursive:
description: 'Recursively search for supported files.'
default: 'false'
required: false
timestamp-server:
description: 'URL of the timestamp server used for the signing'
default: 'http://timestamp.verisign.com/scripts/timstamp.dll'
required: false
runs:
using: 'node20'
main: 'dist/index.js'