From a5b7e2b52e40364ced0c017d30247eb1b03b98e8 Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Fri, 19 Jan 2024 01:06:47 +0100 Subject: [PATCH] [CI/CD] Fixed version format for the `platypush-git` Arch package. The format should be `...r.g`. The `g` prefix was missing. --- .drone.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index a650bb65a..bd44aa9a9 100644 --- a/.drone.yml +++ b/.drone.yml @@ -368,7 +368,7 @@ steps: - git pull --rebase origin master --tags - export VERSION=$(python setup.py --version) - export HEAD=$(git log --pretty=format:%h HEAD...HEAD~1 | head -1) - - export GIT_VERSION="$VERSION.r$(git log --pretty=oneline HEAD...v$VERSION | wc -l).$HEAD" + - export GIT_VERSION="$VERSION.r$(git log --pretty=oneline HEAD...v$VERSION | wc -l).g$${HEAD}" - export TAG_URL="https://git.platypush.tech/platypush/platypush/archive/v$VERSION.tar.gz" - echo "--- Preparing environment"