-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathaction.yml
More file actions
82 lines (65 loc) · 2.14 KB
/
action.yml
File metadata and controls
82 lines (65 loc) · 2.14 KB
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
77
78
79
80
81
82
name: "esigner-codesign"
description: "GitHub Action for SSL.com code signing with enhanced security features"
author: "step-security"
branding:
icon: "shield"
color: "blue"
inputs:
# Core signing operation
command:
description: "Signing command to execute"
required: true
default: "--version"
# Authentication credentials
username:
description: "SSL.com account username for authentication"
required: false
password:
description: "SSL.com account password (recommend using secrets)"
required: false
credential_id:
description: "Unique identifier for the signing certificate credential"
required: false
totp_secret:
description: "Time-based one-time password secret for two-factor authentication"
required: false
program_name:
description: "Program or application name for signing metadata"
required: false
# File and directory paths
file_path:
description: "Absolute path to the single file to be signed"
required: false
dir_path:
description: "Directory path containing multiple files for batch signing"
required: false
output_path:
description: "Destination directory where signed artifacts will be saved"
required: false
# Signing options
malware_block:
description: "Enable malware scanning before signing to prevent compromised code (true/false)"
required: false
override:
description: "Replace the original file with signed version instead of creating new file (true/false)"
required: false
# Operation settings
clean_logs:
description: "Remove log files after signing operation completes (true/false)"
required: false
default: "false"
environment_name:
description: "Target environment for signing operations (PROD for production, TEST for sandbox)"
required: false
default: "PROD"
jvm_max_memory:
description: "Maximum Java Virtual Machine heap memory allocation (e.g., 1024M, 2048M)"
required: false
default: "1024M"
signing_method:
description: "Code signing implementation version to use (v1 or v2)"
required: false
default: "v1"
runs:
using: 'node20'
main: 'dist/index.js'