mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-04-06 00:32:12 +02: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 |