ipfs-cluster/cascade-release.sh
James Andariese 14633b8f62
All checks were successful
Github Actions Demo / Explore-Gitea-Actions (push) Successful in 1m33s
add cascade-release.sh to make releases
2024-03-03 19:31:26 -06:00

15 lines
327 B
Bash
Executable File

#!/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