todo/deploy.sh
2021-11-14 19:47:56 +01:00

10 lines
142 B
Bash
Executable File

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