You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# case when the triggered event is a manual workflow dispatch or a new branch or tag creation, we would need to deploy the image because we cannot determine that it does not need to be deployed
376
372
GITHUB_EVENT_BEFORE=${{ github.event.before }}
377
373
GITHUB_EVENT_AFTER=${{ github.event.after }}
374
+
# case when the triggered event is a manual workflow dispatch or a new branch or tag creation, we would need to deploy the image because we cannot determine that it does not need to be deployed
378
375
if [[ "$GITHUB_EVENT_BEFORE" == "0000000000000000000000000000000000000000" || -z $GITHUB_EVENT_BEFORE && -z $GITHUB_EVENT_AFTER ]]; then
379
-
DAGS_ONLY_DEPLOY=false
380
-
SKIP_IMAGE_OR_DAGS_DEPLOY=false
381
-
files=()
376
+
echo "Manual workflow dispatch or a new branch or tag creation, hence missing github event before and/or after commit hash"
0 commit comments