We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd456d5 commit e98b7cdCopy full SHA for e98b7cd
src/main.js
@@ -25,8 +25,8 @@ async function run () {
25
cmd += ` -project=${inputs.project}`
26
cmd += ` -name=${inputs.name}`
27
cmd += ` -image=${inputs.image}`
28
- if (!!inputs.port) cmd += ` -port=${port}`
29
- if (!!inputs.type) cmd += ` -type=${type}`
+ if (!!inputs.port) cmd += ` -port=${inputs.port}`
+ if (!!inputs.type) cmd += ` -type=${inputs.type}`
30
if (!!inputs.minReplicas) cmd += ` -minReplicas=${inputs.minReplicas}`
31
if (!!inputs.maxReplicas) cmd += ` -maxReplicas=${inputs.maxReplicas}`
32
0 commit comments