ci(docker): pass beta env to installer e2e

(cherry picked from commit 7677b4ca24)
This commit is contained in:
Peter Steinberger
2026-04-26 23:21:56 +01:00
parent 1bb46ce68a
commit 8d909ed0da
2 changed files with 14 additions and 2 deletions

View File

@@ -74,9 +74,9 @@ fi
echo "==> Run official installer one-liner"
if [[ "$INSTALL_TAG" == "beta" ]]; then
OPENCLAW_BETA=1 curl -fsSL "$INSTALL_URL" | bash
curl -fsSL "$INSTALL_URL" | OPENCLAW_BETA=1 bash
elif [[ "$INSTALL_TAG" != "latest" ]]; then
OPENCLAW_VERSION="$INSTALL_TAG" curl -fsSL "$INSTALL_URL" | bash
curl -fsSL "$INSTALL_URL" | OPENCLAW_VERSION="$INSTALL_TAG" bash
else
curl -fsSL "$INSTALL_URL" | bash
fi