mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-23 15:49:10 +00:00
17 lines
207 B
Bash
Executable File
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 |