diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 000000000..6834a1f9a Binary files /dev/null and b/.DS_Store differ diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 489edfa91..026bfb08b 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -127,8 +127,9 @@ # Check if cluster exists if ! aws ecs describe-clusters --clusters $CLUSTER_NAME | grep -q "ACTIVE"; then echo "Error: ECS cluster $CLUSTER_NAME doesn't exist or isn't active" - exit 1 - fi + aws ecs create-cluster --cluster-name $CLUSTER_NAME + echo "DEPLOYMENT_NEEDED=false" >> $GITHUB_ENV + else # Check if service exists if ! aws ecs list-services --cluster $CLUSTER_NAME | grep -q $SERVICE_NAME; then diff --git a/src/.DS_Store b/src/.DS_Store new file mode 100644 index 000000000..086568bb8 Binary files /dev/null and b/src/.DS_Store differ