From 9562d8d0e39e8544b42b702281ac8540f866a83c Mon Sep 17 00:00:00 2001 From: "cypress@superblocks.app" Date: Thu, 12 Mar 2026 13:11:48 -0400 Subject: [PATCH] change tag to use beta cli --- README.md | 2 +- action.yaml | 2 +- entrypoint.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6121f84..68efcde 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ jobs: | domain | string | false | `"app.superblocks.com"` | Superblocks domain (host or full URL) | | path | string | false | `"."` | Relative path from repo root to sync root | | sha | string | false | `"HEAD"` | Git SHA to sync from `main` snapshot | -| cli_version | string | false | `"latest"` | Superblocks CLI version to install | +| cli_version | string | false | `"beta"` | Superblocks CLI version to install | ## Outputs diff --git a/action.yaml b/action.yaml index 1183af2..b9e0102 100644 --- a/action.yaml +++ b/action.yaml @@ -15,7 +15,7 @@ inputs: default: "HEAD" cli_version: description: "Superblocks CLI version to install." - default: "latest" + default: "beta" runs: using: "docker" diff --git a/entrypoint.sh b/entrypoint.sh index 4f67444..a5e0d6f 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -2,7 +2,7 @@ set -euo pipefail -SUPERBLOCKS_CLI_VERSION="${SUPERBLOCKS_CLI_VERSION:-latest}" +SUPERBLOCKS_CLI_VERSION="${SUPERBLOCKS_CLI_VERSION:-beta}" SUPERBLOCKS_DOMAIN="${SUPERBLOCKS_DOMAIN:-app.superblocks.com}" SUPERBLOCKS_PATH="${SUPERBLOCKS_PATH:-.}" SUPERBLOCKS_SYNC_SHA="${SUPERBLOCKS_SYNC_SHA:-HEAD}"