WIP: Fix docker-publish workflow to fetch git tags for version detection #62
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "copilot/sub-pr-58-yet-again"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The docker-publish workflow uses
git describe --tagsto extract version information, but the checkout action wasn't fetching tag history, causing it to always fall back to "dev".Changes:
fetch-depth: 0to the checkout step to fetch full git history and tagsThis allows the version extraction step to correctly resolve tags instead of defaulting to "dev" when running outside of tag-triggered builds.
💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.
Pull request closed