oneuptime/deploy-staging.sh
2021-06-10 20:06:12 +01:00

17 lines
207 B
Bash
Executable File

#!/bin/bash
# Deploy to staging
git checkout hotfix-master
git pull
git checkout master
git pull
git merge hotfix-master
git push
git checkout hotfix-master
git merge master
git push
git checkout master