fix: improve workflow dependencies and helm chart publishing #212
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.
Fix: Improve Workflow Dependencies and Helm Chart Publishing
Overview
This PR fixes critical issues in the CI/CD workflow that were preventing proper sequential execution and helm chart publishing to ghcr.io.
Problems Solved
1. Job Dependency Issues
release
job was depending onbuild-docs
which only runs on PRs, causing release jobs to hang indefinitely2. Missing Helm Chart Publishing
IMG
variable wasn't set during helm chart generation, causing incorrect image referencesChanges Made
Workflow Dependencies
Environment Variables for Helm Publishing
Expected Behavior After Fix
Sequential Workflow Execution
Helm Chart Publishing
ghcr.io/weaveworks/charts/gitopssets-controller
Container Image Publishing
ghcr.io/weaveworks/gitopssets-controller
Testing
Impact
Related Issues
This addresses the issue where release-please was creating releases but the actual release job wasn't executing due to dependency problems.