fix(helm): variable substitution
Signed-off-by: rjshrjndrn <rjshrjndrn@gmail.com>
This commit is contained in:
parent
119d422a86
commit
12e145a66a
2 changed files with 4 additions and 2 deletions
3
.github/workflows/workers-ee.yaml
vendored
3
.github/workflows/workers-ee.yaml
vendored
|
|
@ -61,7 +61,8 @@ jobs:
|
|||
#
|
||||
set -x
|
||||
touch /tmp/images_to_build.txt
|
||||
build_param=${${{ github.event.inputs.build_service }}:-'false'}
|
||||
tmp_param=${{ github.event.inputs.build_service }}
|
||||
build_param=${tmp_param:-'false'}
|
||||
case ${build_param} in
|
||||
false)
|
||||
{
|
||||
|
|
|
|||
3
.github/workflows/workers.yaml
vendored
3
.github/workflows/workers.yaml
vendored
|
|
@ -61,7 +61,8 @@ jobs:
|
|||
#
|
||||
set -x
|
||||
touch /tmp/images_to_build.txt
|
||||
build_param=${${{ github.event.inputs.build_service }}:-'false'}
|
||||
tmp_param=${{ github.event.inputs.build_service }}
|
||||
build_param=${tmp_param:-'false'}
|
||||
case ${build_param} in
|
||||
false)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue