Conversation
|
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #6319 +/- ##
=========================================
Coverage 42.59% 42.59%
=========================================
Files 2497 2497
Lines 43401 43401
Branches 10232 9851 -381
=========================================
Hits 18485 18485
- Misses 23590 24879 +1289
+ Partials 1326 37 -1289 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
There was a problem hiding this comment.
Pull request overview
This PR modifies the container publishing workflow to prevent non-latest releases from being tagged with the "latest" Docker image tag. Previously, every published release would automatically receive the "latest" tag. The PR introduces logic to compare the current tag being published against the repository's latest release to determine if it should receive the "latest" tag.
Changes:
- Added a new step to check if the current tag is the actual latest version by comparing with the repository's latest release using version sorting
- Configured Docker metadata action to disable automatic "latest" tagging and conditionally apply it based on the version check
Yes, once we release new latest version the situation will correct itself and it should work properly from now on |
No description provided.