Skip to content

Commit 3d17534

Browse files
Adam DomuradAdam Domurad
authored andcommitted
fix(ci): call release_bb_github in the private-fork release path
PR #21775 renamed release_github -> release_bb_github but updated only one of the two call sites; the private-fork path in ci-release kept calling the now -undefined release_github, so any tag-based private release failed with exit 127 ("command not found") before building. Point it at the renamed function.
1 parent 7689c7f commit 3d17534

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

bootstrap.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -962,7 +962,7 @@ case "$cmd" in
962962
if [[ "$(semver prerelease $REF_NAME)" == private* ]]; then
963963
echo_header "Private fork release: $REF_NAME"
964964
echo "Creating GitHub release from public repo context (COMMIT_HASH=$COMMIT_HASH)..."
965-
release_github
965+
release_bb_github
966966
echo "Fetching private source from aztec-packages-private..."
967967
git remote add private "https://x-access-token:${GITHUB_TOKEN}@github.com/AztecProtocol/aztec-packages-private.git"
968968
git fetch --depth 1 private "refs/tags/$REF_NAME"

0 commit comments

Comments
 (0)