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}"