generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
39 lines (34 loc) · 894 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
36
37
38
39
name: 'S3 Signed URL'
description: 'This action creates S3-compatible signed URL for the defined file in the bucket'
branding:
icon: "cloud"
color: "blue"
inputs:
endpoint:
description: 'endpoint to access s3-compatible storage'
required: true
region:
description: 'region of the bucket'
required: true
aws_access_key_id:
description: 'aws access key id'
required: true
aws_secret_access_key:
description: 'aws secret access key'
required: true
bucket:
description: 'bucket name'
required: true
expires:
description: 'signed url expiration time in seconds'
required: true
default: '86400'
file_path:
description: 'path to the file in the bucket'
required: true
outputs:
url: # output will be available to future steps
description: 'signed url for the file'
runs:
using: 'node16'
main: 'dist/index.js'