ci: Add missing commit hash to Conan recipe version (#6256)

During several iterations of development of https://github.com/XRPLF/rippled/pull/6235, the commit hash was supposed to be moved into the `run:` statement, but it slipped through the cracks and did not get added. This change adds the commit hash as suffix to the Conan recipe version.
This commit is contained in:
Bart
2026-01-21 19:17:05 -05:00
committed by GitHub
parent 4cd6cc3e01
commit 4fd4e93b3e

View File

@@ -31,7 +31,8 @@ runs:
fi
echo 'Appending shortened commit hash to version.'
VERSION="${VERSION}-${COMMIT_HASH:0:7}"
SHA='${{ github.sha }}'
VERSION="${VERSION}-${SHA:0:7}"
echo "VERSION=${VERSION}" >> "${GITHUB_ENV}"