generated from actions/typescript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaction.yml
65 lines (62 loc) · 2.03 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
name: AWS Lambda Code Signing GitHub Action
author: Clowd Haus, LLC
description: GitHub action which uses AWS Code Signer to sign ✍🏼 AWS Lambda artifacts 📦 from your pipeline
branding:
icon: edit
color: orange
inputs:
aws-region:
description: AWS Region, e.g. us-east-2
required: true
client-request-token:
description: >-
String that identifies the signing request. All calls after
the first that use this token return the same response as the first call
required: false
source-s3-bucket:
description: The S3 bucket that contains the object to sign
required: true
source-s3-key:
description: Key name of the bucket object that contains your unsigned code
required: true
source-s3-version:
description: Version of your source image in your version enabled S3 bucket
required: true
destination-s3-bucket:
description: The S3 bucket in which to save your signed object
required: true
destination-s3-prefix:
description: S3 object key prefix to prepend to your signed object
required: false
default: 'signed/'
profile-name:
description: The name of the signing profile
required: true
profile-owner:
description: The AWS account ID of the signing profile owner
required: false
rename-signed-object:
description: >-
Rename the generated signed object to match the original
`sourceS3Key` with the `destinationS3Prefix`
required: false
default: 'true'
wait-until-successful:
description: Wait until the signed jobs complete successfully
required: false
default: 'true'
max-wait-time:
description: >-
Maximum amount of time, in seconds, to wait for a job to complete successfully
required: false
default: '30'
outputs:
job-id:
description: The ID of your signing job
signed-object-key:
description: The S3 key of your signed object, as created by AWS Signer
renamed-signed-object-key:
description: The renamed S3 key of your signed object
runs:
using: node20
main: dist/index.js