There was an error while loading. Please reload this page.
1 parent 5838ef8 commit d76ab96Copy full SHA for d76ab96
1 file changed
.github/workflows/ci-main.yml
@@ -384,7 +384,9 @@ jobs:
384
echo "rolling=${LABEL}-latest" >> "$GITHUB_OUTPUT"
385
# Version baked into the binary's /info (relay dashboard badge):
386
# exact tag on release commits, tag-distance-sha on snapshots.
387
- echo "describe=$(git describe --tags --always)" >> "$GITHUB_OUTPUT"
+ # Leading "v" stripped — /info reports bare semver-style ("0.2.1",
388
+ # "0.2.1-14-gabc1234"); display layers add their own "v".
389
+ echo "describe=$(git describe --tags --always | sed 's/^v//')" >> "$GITHUB_OUTPUT"
390
391
- name: Build Docker image
392
run: |
0 commit comments