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