Compare commits

...

4 Commits

Author SHA1 Message Date
rootzoll
0cea611e63 #fix branch substitution 2025-06-09 11:42:23 +02:00
rootzoll
d720820aec #5053 ui use active branch 2025-06-09 11:28:08 +02:00
rootzoll
d5dfd4dee0 #5053 make api use active release branch 2025-06-09 11:25:11 +02:00
rootzoll
b31e1df03b add debug 2025-06-09 11:21:11 +02:00
2 changed files with 2 additions and 2 deletions

View File

@@ -193,7 +193,7 @@ if [ "$1" = "1" ] || [ "$1" = "on" ]; then
echo "# RELEASE CANDIDATE: using dev branch"
GITHUB_BRANCH="dev"
else
GITHUB_BRANCH="blitz-${githubBranch}"
GITHUB_BRANCH="blitz-${activeBranch}"
fi
GITHUB_COMMITORTAG=""

View File

@@ -60,7 +60,7 @@ if [ "$1" = "1" ] || [ "$1" = "on" ]; then
echo "# RELEASE CANDIDATE: using master branch"
GITHUB_BRANCH="master"
else
GITHUB_BRANCH="release/${githubBranch}"
GITHUB_BRANCH="release/${activeBranch}"
fi
GITHUB_COMMITORTAG=""
else