forked from dlemstra/code-sign-action
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathaction.yml
31 lines (30 loc) · 802 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
name: 'Code sign a file with pfx certificate'
description: 'Sign a file with a pfx certificate.'
branding:
icon: 'award'
color: 'green'
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: 'The password'
required: false
certificatesha1:
description: 'The sha1 or fingerprint of the certification'
required: false
certificatename:
description: 'The Name of the certificate'
required: false
timestampUrl:
description: 'URL of the timestamp server'
required: false
runs:
using: 'node12'
main: 'dist/index.js'