fix(release): CTL install URLs + real OCI chart names (aep-platform / aep-bootstrap)#318
Open
senithkay wants to merge 2 commits into
Open
fix(release): CTL install URLs + real OCI chart names (aep-platform / aep-bootstrap)#318senithkay wants to merge 2 commits into
senithkay wants to merge 2 commits into
Conversation
The aep CLI release notes hardcoded github.com/wso2/aep/releases/download/...,
but the release is created in the repo the workflow runs in — so the curl
install commands 404. Use ${{ github.repository }} so the URLs always match
the repo the release lands in.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
|
Important Review skippedAuto reviews are disabled on base/target branches other than the default branch. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Plus Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
…m / aep-bootstrap) The Helm charts are named `aep-platform` and `aep-bootstrap` in Chart.yaml, so helm-push publishes the OCI artifacts as ghcr.io/wso2/aep/charts/aep-platform and .../aep-bootstrap. Three references used the directory name (platform / bootstrap) instead, so they resolve to non-existent artifacts (helm: 'not found'): - tools/aepctl/cmd/init.go — 'aep platform install --platform-version' pull - tools/aepctl/cmd/update.go — 'aep platform update' pull - .github/workflows/release.yml — bootstrap install snippet in the platform release notes Without this, the released CLI cannot pull its own platform chart from GHCR. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
KCSAbeywickrama
approved these changes
Jul 26, 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.
Two release-workflow / CLI fixes (originally split as #318 + #320, now combined here).
1. CTL install URLs point to the release repo
The
aepCLI release notes hardcodedgithub.com/wso2/aep/releases/download/..., but the release is created in the repo the workflow runs in — so thecurlinstall commands 404. Now uses${{ github.repository }}.2. Pull release charts by their real OCI names
The Helm charts are named
aep-platform/aep-bootstrapinChart.yaml, sohelm pushpublishes the OCI artifacts asghcr.io/wso2/aep/charts/aep-platformand.../aep-bootstrap. Three references used the directory name (platform/bootstrap) → resolve to non-existent artifacts (helm: not found):tools/aepctl/cmd/init.gocharts/platform→charts/aep-platformaep platform install --platform-versioncouldn't pull the charttools/aepctl/cmd/update.gocharts/platform→charts/aep-platformaep platform updatesame failure.github/workflows/release.ymlcharts/bootstrap→charts/aep-bootstrapWithout #2, the released
aepCLI cannot pull its own platform chart from GHCR. Verified live:helm show chart oci://ghcr.io/wso2/aep/charts/aep-bootstrap --version 0.6.0-rcworks; the un-prefixed names don't exist.Scope / verification
deployments/helm-charts/{platform,bootstrap}filesystem paths are correct, left as-is.go build ./...intools/aepctlpasses;git grepconfirms no wrong OCI refs remain.Follow-up
After merge, re-cut the release so the shipped CLI can pull its chart.
🤖 Generated with Claude Code