change variable name
All checks were successful
Deploy Containers / Prepare (push) Successful in 5s

This commit is contained in:
2025-10-15 23:32:10 -04:00
parent 505f5581fb
commit 11ee38c3c1

View File

@@ -75,8 +75,8 @@ def main():
if "roles/" not in file: if "roles/" not in file:
task = deploy(tag=task_name) task = deploy(tag=task_name)
else: else:
role_name = file.split("/")[1] task_name = file.split("/")[1]
task = deploy(tag=role_name) task = deploy(tag=task_name)
if not task: if not task:
failed.append(task_name) failed.append(task_name)