fix: install gitsemver in create-release build artifacts job - #194
Merged
Conversation
Makefiles generated by devctl now use `gitsemver version` to compute the build version (introduced with architect-orb v9.0.0). The GHA runner doesn't have gitsemver pre-installed, causing VERSION to be empty and the packaged artifact to be named without the version string, so the upload step fails to find the expected file.
Gacko
approved these changes
Jun 1, 2026
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.
Summary
gitsemverinstall step to thecreate_and_upload_build_artifactsjob increate-release.yamlBackground
Makefile.gen.go.mk(generated by devctl) was updated to compute the build version with:This was introduced as part of the architect-orb v9.0.0 migration where
gitsemverreplacedarchitect project versionas the canonical version-stamping tool. In CircleCI,gitsemveris bundled inside the architect executor image. On GHA runners it is not present.Without this fix,
gitsemveris missing on the runner →VERSIONevaluates to empty → the binary is built as e.g.devctl-v-linux-amd64→ the upload step looks fordevctl-v8.0.0-linux-amd64.tar.gz→stat: no such file or directory→ job fails.Observed failing run: https://github.com/giantswarm/devctl/actions/runs/26753246655/job/78846384928
Test plan
build-release-artifacts: trueand verify all platform packages are built and uploaded successfully