fix update script
All checks were successful
Deploy Containers / Prepare (push) Successful in 5s

This commit is contained in:
2025-12-27 21:05:12 -05:00
parent 4d815c7e19
commit 95766317e3

View File

@@ -26,8 +26,9 @@ def main():
with open("main.yml", 'r') as file:
data = yaml.safe_load(file)
for host in data:
for task in host['tasks']:
deployable_tags.append(task['tags'])
if "tasks" in host:
for task in host['tasks']:
deployable_tags.append(task['tags'])
if len(update_list["images"]) > 0:
already_deployed = []