add cascade-release.sh to make releases
All checks were successful
Github Actions Demo / Explore-Gitea-Actions (push) Successful in 1m33s

This commit is contained in:
James Andariese 2024-03-03 19:25:59 -06:00
parent 9464148db7
commit 14633b8f62

14
cascade-release.sh Executable file
View File

@ -0,0 +1,14 @@
#!/bin/bash
set -e
if [ x"$(git branch --show)" != x"cascade" ];then
echo "this cannot be run on any branches other than cascade"
exit 1
fi
git fetch upstream
git checkout -b cascade-"$1"
git rebase "$1" || (git checkout cascade && git branch -D cascade-"$1";exit 1)
git push -u origin cascade-"$1"
git checkout cascade