i think that should fix?
All checks were successful
Deploy Containers / Prepare (push) Successful in 3s

This commit is contained in:
2026-04-05 22:38:18 -04:00
parent 41d6a674ff
commit d4bf06489c

View File

@@ -50,10 +50,10 @@ def main():
# i'm not proud of this either # i'm not proud of this either
if not os.path.exists(os.path.join(dir_path, file)): if not os.path.exists(os.path.join(dir_path, file)):
if "roles" in file and not os.path.exists(os.path.join(dir_path, service_name)): if "roles" in file and not os.path.exists(os.path.join(dir_path, service_name)):
print(f"[MAIN] '{task_name}' role removed, marking for cleanup..") print(f"[MAIN] '{service_name}' role removed, marking for cleanup..")
removed_containers.append(service_name) removed_containers.append(service_name)
elif "tasks" in task_name: elif "tasks" in file:
print(f"[MAIN] '{task_name}' non-existent, marking for cleanup..") print(f"[MAIN] '{service_name}' non-existent, marking for cleanup..")
removed_containers.append(service_name) removed_containers.append(service_name)
else: else:
if service_name not in ignore_deploys_for and service_name not in new_diff: if service_name not in ignore_deploys_for and service_name not in new_diff: