-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathaction.yml
More file actions
43 lines (42 loc) · 1.43 KB
/
action.yml
File metadata and controls
43 lines (42 loc) · 1.43 KB
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
name: "BunnyCDN storage deployer"
description: "BunnyCDN storage deployer"
inputs:
upload:
description: "It will upload the files to storage if 'true' provided."
default: "false"
source:
description: "The source directory folder."
required: true
destination:
description: "The destination directory that should be uploaded too in the bunny storage zone. (Example: www)."
required: false
storageZoneName:
description: "The name of your storage zone where you are connecting to."
required: true
storagePassword:
description: "The storage password. It should be read and write capable."
storageEndpoint:
description: "The storage endpoint"
default: "storage.bunnycdn.com"
accessKey:
description: "The API key."
pullZoneId:
description: "Is required for purging."
purgePullZone:
description: "It will purge the pull zone if true. pullZoneId and accessKey should be provided."
default: "false"
purgePullZoneDelay:
description: "The delay in seconds before purging the pull zone, to give storage time to replicate first."
default: "0"
remove:
description: "It will remove the files from storage before uploading if 'true' provided."
default: "false"
maxRetries:
description: "Num of attempts for network operations, such as remove, upload and purge."
default: "5"
runs:
using: "node24"
main: "dist/index.js"
branding:
icon: "upload-cloud"
color: "orange"