-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdisabled-action.yml
More file actions
51 lines (50 loc) · 1.33 KB
/
disabled-action.yml
File metadata and controls
51 lines (50 loc) · 1.33 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
44
45
46
47
48
49
50
51
name: "s3 cache"
author: tespkg
description: "S3 actions cache with actions/cache@v2 passthrough"
inputs:
endpoint:
description: "s3 / minio endpoint, see: https://docs.min.io/docs/javascript-client-api-reference.html"
required: false
default: s3.amazonaws.com
region:
description: "AWS region"
required: false
port:
description: minio port
required: false
insecure:
description: use insecure http connection to minio
required: false
accessKey:
description: s3 / minio accessKey
required: true
secretKey:
description: s3 / minio secretKey
required: true
sessionToken:
description: s3 session token - required when using role
required: false
bucket:
description: s3 / minio bucket
required: true
cache-list-keys:
description: "List of keys to cache"
default: ''
required: false
cache-list-keys-file:
description: "List of keys to cache"
default: ''
required: false
outputs:
cache-hit:
description: "A boolean value to indicate an exact match was found for the primary key"
cache-size:
description: "A integer value denoting the size of the cache object found (measured in bytes)"
runs:
using: node20
main: "dist/restore/index.js"
post: "dist/save/index.js"
post-if: "success()"
branding:
icon: "archive"
color: "gray-dark"