-
Notifications
You must be signed in to change notification settings - Fork 25
/
action.yml
37 lines (37 loc) · 1.67 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
name: 'AWS S3 Github Action'
description: 'This action allows you to use commands similar to AWS S3 CLI.'
author: 'KeithWeaver'
branding:
icon: 'upload-cloud'
color: 'red'
runs:
using: docker
image: Dockerfile
inputs:
command:
description: "The command that will be performed. More info: https://docs.aws.amazon.com/cli/latest/reference/s3/#available-commands"
required: false
source:
description: "The file path that the file will be sourced from. This can be either a local file or S3 file. The S3 file should lead with s3://."
required: true
destination:
description: "The file path that the file will be place. This can be either a local file or S3 file. The S3 file should lead with s3://."
required: false
aws_access_key_id:
description: "The AWS access key part of your credentials. More info: https://docs.aws.amazon.com/cli/latest/reference/configure/"
required: false
aws_secret_access_key:
description: "The AWS access key part of your credentials. More info: https://docs.aws.amazon.com/cli/latest/reference/configure/"
required: false
aws_session_token:
description: "The AWS access key part of your credentials. More info: https://docs.aws.amazon.com/cli/latest/reference/configure/"
required: false
aws_region:
description: "This is the region of the bucket. S3 namespace is global but the bucket is regional."
required: false
metadata_service_timeout:
description: "The number of seconds to wait until the metadata service request times out. More info: https://docs.aws.amazon.com/cli/latest/reference/configure/"
required: false
flags:
description: "Additional query flags."
required: false