todo/deploy.sh

10 lines
142 B
Bash
Raw Normal View History

2021-11-14 19:46:22 +01:00
#!/bin/bash
git checkout production && git pull main && git push && git checkout main
cd deployment
ansible-playbook todo-setup.yml
cd ..