Add publish container job depending on preparing artifacts#11967
Add publish container job depending on preparing artifacts#11967ppatierno wants to merge 2 commits intostrimzi:mainfrom
Conversation
Signed-off-by: Paolo Patierno <ppatierno@live.com>
Signed-off-by: Paolo Patierno <ppatierno@live.com>
Good catch. I add the condition that prepare artifacts has to be successful. |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #11967 +/- ##
=========================================
Coverage 74.63% 74.63%
- Complexity 6397 6398 +1
=========================================
Files 342 342
Lines 24238 24238
Branches 3194 3194
=========================================
+ Hits 18089 18090 +1
Misses 4877 4877
+ Partials 1272 1271 -1 🚀 New features to boost your workflow:
|
And does it work? Did you test it? I was doing the condition like 5 times before I got it into a working state. |
|
So as we want to migrate to GHA, should we close this PR? We lived without that condition even before, so maybe we should switch our focus to GHA instead of fixing something that will not be needed for 0.49.0 and on? |
|
I agree. Going to close this one, it could be not worth fixing it. |
Looking at this operator release pipeline build https://dev.azure.com/cncf/strimzi/_build/results?buildId=186729&view=results I noticed that the first stage (
prepare_release_artifacts) failed but it anyway ran thecontainers_publishone.I guess it's because the
containers_publishdepends only oncontainers_publish_with_suffix. But the last one can be skipped during an RC so thecontainers_publishruns anyway.This PR adds the dependency on the
prepare_release_artifactsas well.