generated from actions/typescript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
action.yml
48 lines (48 loc) · 1.58 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: Deploy to Clever Cloud
description: Deploy your application to Clever Cloud
author: François Best
branding:
icon: upload-cloud
color: red
inputs:
alias:
required: false
description: |
The alias of the application to deploy,
if you are using a .clever.json file.
appID:
required: false
description: |
The ID of your application (can be found in the Clever Cloud console).
Takes precedence over `alias` if both are defined.
force:
required: false
default: 'false'
description: |
Use true if you want to force deploy even if it's not fast-forwardable
timeout:
required: false
description: |
How long (in seconds) to wait at most before moving on.
This can help saving build minutes with very long deployments,
but you will lose any deployment failure information.
setEnv:
required: false
description: |
Extra environment variables to set on the application before deployment.
Values are separated by a newline character (\n), use a YAML literal block
scalar `|` to preserve newlines and separate multiple variables definitions.
(see https://github.com/47ng/actions-clever-cloud#extra-environment-variables)
logFile:
required: false
description: |
Path to a file where to store the deployment logs.
quiet:
required: false
default: 'false'
description: |
Don't print deployment output to the console. Use this in case your deployment
may reveal secrets or PII.
runs:
using: docker
image: docker://ghcr.io/47ng/actions-clever-cloud:v2.0.0