mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-22 15:24:55 +00:00
17 lines
207 B
Bash
17 lines
207 B
Bash
|
#!/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
|