ci(actions): Nothing to build is not an error.
Signed-off-by: rjshrjndrn <rjshrjndrn@gmail.com>
This commit is contained in:
parent
20f5a6e589
commit
2746781d9b
2 changed files with 2 additions and 2 deletions
2
.github/workflows/workers-ee.yaml
vendored
2
.github/workflows/workers-ee.yaml
vendored
|
|
@ -86,7 +86,7 @@ jobs:
|
|||
;;
|
||||
esac
|
||||
|
||||
[[ $(cat /tmp/images_to_build.txt) != "" ]] || (echo "Nothing to build here"; exit 1)
|
||||
[[ $(cat /tmp/images_to_build.txt) != "" ]] || (echo "Nothing to build here"; exit 0)
|
||||
#
|
||||
# Pushing image to registry
|
||||
#
|
||||
|
|
|
|||
2
.github/workflows/workers.yaml
vendored
2
.github/workflows/workers.yaml
vendored
|
|
@ -86,7 +86,7 @@ jobs:
|
|||
;;
|
||||
esac
|
||||
|
||||
[[ $(cat /tmp/images_to_build.txt) != "" ]] || (echo "Nothing to build here"; exit 1)
|
||||
[[ $(cat /tmp/images_to_build.txt) != "" ]] || (echo "Nothing to build here"; exit 0)
|
||||
#
|
||||
# Pushing image to registry
|
||||
#
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue