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