fix(installer): point release URLs at RocketBus/iris + verify assets in CI#100
Merged
Conversation
…in CI The repo was renamed clickbus-iris → iris. The installer templates and user-facing links still hardcoded the old name, relying on GitHub's rename redirect (fragile — breaks if a new clickbus-iris repo is created). Point the install.sh / install.ps1 release API + download URLs, plus the footer/navbar/FAQ/legal-page references, directly at RocketBus/iris. Also add a "Verify assets are attached" step to release.yml. The v1.4.3 release lost its wheel after publish, which 404'd every `iris upgrade`; the new step fails the job if the wheel/tarball aren't on the release. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
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.
Context
iris upgradewas 404'ing for everyone. Two distinct issues surfaced:iris-1.4.3-py3-none-any.whl+ tarball, but they were later removed when the release notes were edited). The installer pulls the wheel straight off the release, so every upgrade 404'd. Already re-uploaded the exact artifacts (wheel byte-identical to CI, 213441 B) to the v1.4.3 release, so upgrades work again right now — this PR prevents a recurrence.RocketBus/clickbus-iris(the old repo name). GitHub's rename redirect was masking it, but it's fragile — it breaks the day someone creates a newclickbus-irisrepo.Changes
install.sh.template,install.ps1.template): point the release API + download URLs atRocketBus/iris. (Takes effect after a platform redeploy, since the installer is served by the Next.js app.)RocketBus/iris(en/pt/es).release.yml: new "Verify assets are attached" step that fails the job if the wheel/tarball aren't on the release after publish — so a release can never silently ship without the artifact the installer needs.Scope notes
clickbus-iris→irisstring replacements plus the new CI verification step.🤖 Generated with Claude Code