diff options
author | Devan Carpenter <devan@taler.net> | 2024-04-11 16:02:09 -0400 |
---|---|---|
committer | Devan Carpenter <devan@taler.net> | 2024-04-11 16:02:09 -0400 |
commit | 078e610162f914ce7cf2f0a47ffc9b44062fcebb (patch) | |
tree | 5e4ca3780446ccb66a5661597880dc80329149c3 /contrib/ci | |
parent | 30ee1a12ba0a963be4c699ce14a4db727935f333 (diff) |
ci: exclude dev tags from .deb version strings
this avoids a whole mess of problems with version string parsing and
selection with dpkg and gbh
Diffstat (limited to 'contrib/ci')
-rwxr-xr-x | contrib/ci/jobs/4-deb-package/version.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/ci/jobs/4-deb-package/version.sh b/contrib/ci/jobs/4-deb-package/version.sh index a6e740af0..52031b23a 100755 --- a/contrib/ci/jobs/4-deb-package/version.sh +++ b/contrib/ci/jobs/4-deb-package/version.sh @@ -7,7 +7,7 @@ if [ -z "${BRANCH}" ]; then else # "Unshallow" our checkout, but only our current branch, and exclude the submodules. git fetch --no-recurse-submodules --tags --depth=1000 origin "${BRANCH}" - RECENT_VERSION_TAG=$(git describe --tags --match 'v*.*.*' --always --abbrev=0 HEAD || exit 1) + RECENT_VERSION_TAG=$(git describe --tags --match 'v*.*.*' --exclude '*-dev*' --always --abbrev=0 HEAD || exit 1) commits="$(git rev-list ${RECENT_VERSION_TAG}..HEAD --count)" if [ "${commits}" = "0" ]; then git describe --tag HEAD | sed -r 's/^v//' || exit 1 |