ci(release): re-publish unversioned tarball aliases#5267
Merged
Conversation
goreleaser used to publish both supabase_<version>_<os>_<arch>.tar.gz and supabase_<os>_<arch>.tar.gz. The current workflow only uploads the versioned variant, so curl scripts, docs, the setup-cli action and third-party tools that hit releases/latest/download/<unversioned>.tar.gz have been 404-ing since v2.99.0. Copy the versioned tarballs to the legacy unversioned names before the release upload step. See #5257.
setup-cli (and other download clients) always fetch .tar.gz, including on Windows runners where tc.extractTar handles the archive. The current release only ships .zip for Windows, so 'latest' installs on Windows also 404 after v2.99.0 (same root cause as #5257). - build.ts: when archiving a Windows target, additionally emit a .tar.gz containing the same binaries, and hash both files in checksums.txt. - release-shared.yml: upload the new versioned Windows .tar.gz files, extend the unversioned-alias loop to cover windows_{arm64,amd64}, and list those aliases in the release upload. See #5257.
jgoux
approved these changes
May 18, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
goreleaser used to publish both supabase_.tar.gz
and supabase__.tar.gz. The current workflow only uploads the
versioned variant, so curl scripts, docs, the setup-cli action and
third-party tools that hit releases/latest/download/.tar.gz
have been 404-ing since v2.99.0.
Copy the versioned tarballs to the legacy unversioned names before the
release upload step. See #5257.
Fixes #5262