fix change detection echo

This commit is contained in:
kjeld Schouten-Lebbing
2021-05-09 18:47:43 +02:00
parent 6b59fb2f05
commit 798b0990e1
+3 -3
View File
@@ -53,14 +53,14 @@ jobs:
echo ::set-output name=apps::${APPS} echo ::set-output name=apps::${APPS}
if [ ${#APPS[@]} -eq 1 ]; then if [ ${#APPS[@]} -eq 1 ]; then
if [ -z "${APPS[0]}" ]; then if [ -z "${APPS[0]}" ]; then
echo "Changed Apps: ${APPS[*]}" echo "No Changed Apps"
echo "::set-output name=empty_matrix::true" echo "::set-output name=empty_matrix::true"
else else
echo "No Changed Apps" echo "Changed Apps: ${APPS[*]}"
echo "::set-output name=empty_matrix::false" echo "::set-output name=empty_matrix::false"
fi fi
else else
echo "No Changed Apps" echo "Changed Apps: ${APPS[*]}"
echo "::set-output name=empty_matrix::false" echo "::set-output name=empty_matrix::false"
fi fi