commit 5b3c3146dc8e8fd24fac5e3da7a6d6975fad51fd parent eca4d6f87810457eb7af850aa05af0a3e41d875a Author: Antoine A <> Date: Sun, 15 Feb 2026 00:47:00 +0100 common: fix deb version Diffstat:
| M | contrib/ci/Containerfile | | | 3 | ++- |
| M | contrib/ci/jobs/4-deb-amd64/job.sh | | | 1 | + |
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/contrib/ci/Containerfile b/contrib/ci/Containerfile @@ -15,7 +15,8 @@ RUN apt-get update -yq && \ make \ postgresql \ debhelper \ - build-essential && \ + build-essential \ + git-buildpackage && \ # Install rustup toolchain rustup default stable diff --git a/contrib/ci/jobs/4-deb-amd64/job.sh b/contrib/ci/jobs/4-deb-amd64/job.sh @@ -8,6 +8,7 @@ apt-get upgrade -yq # Build package export VERSION="$(./contrib/ci/version.sh)" echo "Building package version ${VERSION}" +EMAIL=none gbp dch --dch-opt=-b --ignore-branch --debian-tag="%(version)s" --git-author --new-version="${VERSION}" make deb # Test package