fix
All checks were successful
Deploy Containers / Prepare (push) Successful in 10s

This commit is contained in:
2026-04-06 13:50:47 -04:00
parent d8af8c09c7
commit adfddbc820
2 changed files with 1 additions and 2 deletions

View File

@@ -5,7 +5,7 @@ import subprocess
def git_diff():
args = sys.argv
res = subprocess.run(f"git diff --name-only {args[1]} {args[2]}", capture_output=True, shell=True, text=True)
return [x for x in res.stdout.strip().split("\n") if "tasks/" in x or "roles/" in x]
return [x for x in res.stdout.strip().split("\n") if "tasks/" in x or "roles/" in x or "templates/" in x]
def construct_command(tags):
command = f"ANSIBLE_CONFIG=ansible.cfg /usr/bin/ansible-playbook main.yml --tags={",".join(tags)} --vault-password-file ~/.vault_pass.txt"

View File

@@ -1,4 +1,3 @@
# this is a test to ensure this will deploy
server:
http_listen_port: 9080