forked from trappar/turborepo-remote-cache-gh-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
34 lines (34 loc) · 1.32 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
name: "TurboRepo Remote Cache Server"
description: "Runs a TurboRepo remote cache server based on ducktors/turborepo-remote-cache."
author: trappar
branding:
icon: server
color: blue
inputs:
storage-provider:
description: "Possible values are s3, google-cloud-storage, or azure-blob-storage. Local storage is technically supported but is useless."
required: false
storage-path:
description: "The name of s3, google-cloud-storage, or azure-blob-storage bucket."
required: false
team-id:
description: "Sets the TURBO_TEAM env variable, which controls the directory where cache entries will be saved."
required: false
default: "ci"
host:
description: "Used to set the TURBO_API env variable."
required: false
default: "http://127.0.0.1"
port:
description: "Sets the port the server will listen on, and is added to the end of the TURBO_API env variable."
required: false
port-retry-time-ms:
description: "Sets interval between checks to see if server is running on port. Defaults to 250ms."
required: false
port-timeout-ms:
description: "Sets timeout of port checking. If server is not up and running on the port after this period, the action will fail. Defaults to 5000ms."
required: false
runs:
using: "node16"
main: "dist/start/index.js"
post: "dist/post/index.js"