forked from rishabhrao/s3-website-https-pr-action
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
28 lines (28 loc) · 944 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: "Deploy PRs to S3"
author: "Broken Hands"
description: "Automatically deploy built PR bundles to an S3 static website and set up deployments for each PR."
branding:
icon: "cloud"
color: "orange"
inputs:
bucket-prefix:
description: "Prefix of the bucket name. The PR number will be appended to this value."
required: true
bucket-region:
description: "Region of the S3 bucket."
required: true
folder-to-copy:
description: "Folder to copy assets from into S3."
required: false
environment-prefix:
description: "Prefix of the GitHub Deployment Environment. The PR number will be appended to this value."
required: false
index-document:
description: "Index document for the S3 bucket. Defaults to index.html."
required: false
error-document:
description: "Error document for the S3 bucket. Defaults to error.html."
required: false
runs:
using: "node20"
main: "dist/index.js"