We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b76bcb commit 27b12a5Copy full SHA for 27b12a5
1 file changed
.github/workflows/scheduled.yml
@@ -153,7 +153,8 @@ jobs:
153
IMAGE="${TARGET_REPOSITORY}:${IMAGE_TAG}"
154
CLIENT="${TARGET_REPOSITORY#*/}"
155
156
- if [ "${images[$IMAGE]}" == "false" ]; then
+ # Build if image doesn't exist OR if we couldn't determine existence (fail-safe)
157
+ if [ -z "${images[$IMAGE]}" ] || [ "${images[$IMAGE]}" == "false" ]; then
158
# Handle platforms and runners, ensuring output files are created even if empty
159
platforms=$(yq e ".$CLIENT[]" "$PLATFORMS_FILE")
160
platformsArr=""
0 commit comments