Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ inputs:
default: "HEAD"
cli_version:
description: "Superblocks CLI version to install."
default: "latest"
default: "beta"

runs:
using: "docker"
Expand Down
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
Expand Down
Loading