Compare commits

..

2 Commits

Author SHA1 Message Date
KD
b9c0ba0549 Merge branch 'extend_ver_hash' into 'dev'
Extended the hash

See merge request kdeng00/icarus-models!31
2025-03-15 02:01:42 +00:00
bef3a376bd Extended the hash 2025-03-14 21:24:58 -04:00

View File

@@ -47,7 +47,7 @@ extract_version:
script:
- apk add --no-cache jq
- VERSION=$(grep 'version = "' Cargo.toml | awk -F'"' '{print $2}' | head -n 1)
- VER_HASH=${CI_COMMIT_SHA:0:5}
- VER_HASH=${CI_COMMIT_SHA:0:10}
- VERSION="$VERSION-$VER_HASH"
- if [ $? -ne 0 ]; then echo "Error extracting version"; exit 1; fi
- echo "Extracted version is"