Files
homelab/scripts/deploy_containers.sh
Alex Frantz eeb8dc93a1
All checks were successful
Deploy Containers / Prepare (push) Successful in 3s
only re-deploy caddy when tasks are defined
2025-07-29 21:50:15 -04:00

19 lines
625 B
Bash

#!/bin/bash
# all new/updated tasks in the diff
new_tasks=($(git diff --name-only $1 $2 | grep '\.yml$'))
echo $new_tasks
echo $1 $2
if [ ! -z "$new_tasks" ]; then
echo "Redeploying Caddy.."
ansible-playbook main.yml --tags "caddy_deploy" --vault-password-file ~/.vault_pass.txt
for task in "${new_tasks[@]}"; do
ansible_tag=$(echo "$task" | awk -F/ '{print $2}')
if [[ "$tag" != "all.yml" && "$tag" != "all.template.yml" && "$tag" != "main.yml" ]] ; then
tag=${ansible_tag%.*}_deploy
echo $tag
ansible-playbook main.yml --tags "$tag" --vault-password-file ~/.vault_pass.txt
fi
done
fi