Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion scripts/e2e-install-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ KEEP_DATA=false bash scripts/uninstall.sh 2>/dev/null || true
# Phase 2: Install from source
# =============================================================================
info "Phase 2: Installing from source..."
BRANCH=$(git rev-parse --abbrev-ref HEAD)
# Use the ref GitHub provides; on tag pushes rev-parse returns a detached "HEAD"
BRANCH="${GITHUB_REF_NAME:-$(git rev-parse --abbrev-ref HEAD)}"
# Build CLI from source too when CLI_BRANCH is set (e.g., for testing unreleased CLI features)
BRANCH="$BRANCH" CLI_BRANCH="${CLI_BRANCH:-}" bash scripts/install.sh

Expand Down
Loading