8 lines
96 B
Bash
Executable File
8 lines
96 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
git checkout release
|
|
git merge main
|
|
git push origin release
|
|
git checkout main
|