forked from trappar/turborepo-remote-cache-gh-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
28 lines (28 loc) · 1012 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: "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
runs:
using: "node16"
main: "dist/start/index.js"
post: "dist/post/index.js"