-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
28 lines (28 loc) · 877 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
name: "Delivery Deploy Action"
description: "A GitHub Action for uploading a directory to S3 using @datagraphics/delivery"
author: "Ryan Murphy"
inputs:
dir:
description: "The directory to upload"
required: true
bucket:
description: "The bucket on S3 to upload the directory to"
required: true
base-path:
description: "An optional base path to prepend to all deployed file paths"
required: false
use-accelerate-endpoint:
description: "If true, the accelerated S3 endpoint will be used"
default: "false"
required: false
public:
description: "If true, the files will be uploaded with a public ACL"
default: "false"
required: false
should-cache:
description: "If true, the files will be uploaded with Delivery's cache headers"
default: "false"
required: false
runs:
using: "node16"
main: "dist/index.js"