Added google tag

Added ansible
Added deploy.sh
This commit is contained in:
2025-10-04 14:53:45 +00:00
parent 67411b3972
commit 7b1ee49d11
10 changed files with 130 additions and 0 deletions

13
deploy.sh Executable file
View File

@ -0,0 +1,13 @@
#!/usr/bin/env bash
set -euo pipefail
parent_path=$( cd "$(dirname "${BASH_SOURCE[0]}")" || exit ; pwd -P )
cd "$parent_path" || exit
if [ 1 -eq "$#" ]
then
make build-production TAG="$1"
else
make build-production
fi
cd "$parent_path/ansible" || exit
ansible-playbook playbook.yml