todo/deploy.sh
2021-11-14 19:48:44 +01:00

10 lines
149 B
Bash
Executable File

#!/bin/bash
git checkout production && git pull origin main && git push && git checkout main
cd deployment
ansible-playbook todo-setup.yml
cd ..