challenger

OAuth 2.0-based authentication service that validates user can receive messages at a certain address
Log | Files | Refs | Submodules | README | LICENSE

commit d6885e2f07a326f793496d4016308dadca6f0111
parent 9d3b51d1301a79f4126c74fa8df0811221a8fda2
Author: Devan Carpenter <devan@taler.net>
Date:   Thu, 11 Apr 2024 16:03:56 -0400

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:
Mcontrib/ci/jobs/4-deb-package/version.sh | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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