We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0d8a2c commit ff86b1aCopy full SHA for ff86b1a
action.yml
@@ -23,6 +23,12 @@ inputs:
23
cloud_sql:
24
description: 'CloudSQL instance name'
25
required: false
26
+ env:
27
+ description: 'Environment variables file'
28
+ required: false
29
+ min_instances:
30
+ description: 'Minimum number of instance'
31
32
runs:
33
using: 'docker'
34
image: 'Dockerfile'
entrypoint.sh
@@ -17,6 +17,10 @@ else
17
ENV_FLAG="--clear-env-vars"
18
fi
19
20
+if ["$INPUT_MIN_INSTANCES"]
21
+then
22
+ ENG_FLAG="--min-instances=$INPUT_MIN_INSTANCES $ENV_FLAG"
+fi
if ["$INPUT_CLOUD_SQL"]
then
0 commit comments