From 6cb7dd2fe559e1050179dcbb5161ac20db9b2d78 Mon Sep 17 00:00:00 2001 From: Bartosz Blizniak Date: Wed, 15 Jul 2026 12:22:13 +0100 Subject: [PATCH] feat: default to the production cloudsmith/cli repository The scripts shipped with a temporary test repository default while the standalone binaries were validated end to end. Binaries now publish to cloudsmith/cli, so the installer defaults there. CLOUDSMITH_CLI_REPOSITORY still overrides the default for testing. Co-Authored-By: Claude Fable 5 --- install.ps1 | 3 +-- install.sh | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/install.ps1 b/install.ps1 index 3cc5a3d..92b540a 100644 --- a/install.ps1 +++ b/install.ps1 @@ -19,8 +19,7 @@ param( ), [string]$Target = $env:CLOUDSMITH_CLI_TARGET, [string]$OutputFile = $env:CLOUDSMITH_CLI_OUTPUT_FILE, - # TODO: revert to the production repository before release. - [string]$Repository = $(if ($env:CLOUDSMITH_CLI_REPOSITORY) { $env:CLOUDSMITH_CLI_REPOSITORY } else { "bart-demo-org-terraform/cli-binary-release-test" }), + [string]$Repository = $(if ($env:CLOUDSMITH_CLI_REPOSITORY) { $env:CLOUDSMITH_CLI_REPOSITORY } else { "cloudsmith/cli" }), [string]$ManifestUrl = $env:CLOUDSMITH_CLI_MANIFEST_URL, [switch]$Force ) diff --git a/install.sh b/install.sh index 3288337..4fb9ed1 100755 --- a/install.sh +++ b/install.sh @@ -10,8 +10,7 @@ PROGRAM="install.sh" # Where releases are downloaded from. Flags and CLOUDSMITH_CLI_* environment # variables override the defaults; --manifest-url bypasses URL construction. DOWNLOAD_BASE_URL="https://dl.cloudsmith.io/public" -# TODO: revert to the production repository before release. -DEFAULT_REPOSITORY="bart-demo-org-terraform/cli-binary-release-test" +DEFAULT_REPOSITORY="cloudsmith/cli" MANIFEST_NAME_PREFIX="cloudsmith-cli-manifest" REPOSITORY="${CLOUDSMITH_CLI_REPOSITORY:-$DEFAULT_REPOSITORY}"