ci(backend): adding default parameter value for workflow dispatch

Signed-off-by: rjshrjndrn <rjshrjndrn@gmail.com>
This commit is contained in:
rjshrjndrn 2022-07-05 10:48:06 +02:00
parent fcc8758f45
commit ea334f0e78
2 changed files with 4 additions and 2 deletions

View file

@ -59,8 +59,9 @@ jobs:
#
# Getting the images to build
#
build_param=${${{ github.event.inputs.build_service }}:-'false'}
set -x
case ${{ github.event.inputs.build_service }} in
case ${build_param} in
false)
{
git diff --name-only HEAD HEAD~1 | grep -E "backend/cmd|backend/services" | grep -vE ^ee/ | cut -d '/' -f3

View file

@ -59,8 +59,9 @@ jobs:
#
# Getting the images to build
#
build_param=${${{ github.event.inputs.build_service }}:-'false'}
set -x
case ${{ github.event.inputs.build_service }} in
case ${build_param} in
false)
{
git diff --name-only HEAD HEAD~1 | grep -E "backend/cmd|backend/services" | grep -vE ^ee/ | cut -d '/' -f3