todo/deploy.sh
2021-11-14 19:46:22 +01:00

10 lines
142 B
Bash

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