mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-23 15:49:10 +00:00
8 lines
110 B
Bash
8 lines
110 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# Deploy to production
|
||
|
git checkout hotfix-release
|
||
|
git merge master
|
||
|
git push
|
||
|
|
||
|
git checkout master
|