fix(ci): resolve release tag from git, drop artifact handoff - #87
Merged
Conversation
- Add echo DEBUG: VERSION='${VERSION}' to see actual value
- Download builddeck.tag without --step filter (searches all steps)
- Keep --step release_build as fallback (also no 2>/dev/null)
- Remove release_build's re-upload of builddeck.tag (caused duplicate artifact)
- Only tag step publishes builddeck.tag now
Ditch the builddeck.tag artifact handoff. The release step now: 1. Uses BUILDKITE_TAG if set (tag-push triggered builds) 2. Fetches tags and reads latest v* tag from local git 3. Falls back to querying remote tags via git ls-remote No more builddeck.tag — only tag step uploads it (for release_build's version detection). Release step doesn't need it.
alexhraber
force-pushed
the
fix/local-first-release-acpt
branch
from
July 11, 2026 07:15
19ea282 to
a156a1e
Compare
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.
Resolve the release tag from git instead of fragile artifact handoff:
BUILDKITE_TAGif set (tag-push triggered builds)v*tag from local git (same-agent after tag step)Binary and sha256 are downloaded from
release_build(only if not already present locally). Everything matchingbuilddeck*is uploaded to the release byrelease.sh.No more
builddeck.tagartifact handoff — eliminates the empty-VERSION bug and the duplicate artifact.