[CI/CD] Fixed version format for the platypush-git Arch package.
All checks were successful
continuous-integration/drone/push Build is passing

The format should be `<MAJ>.<MIN>.<PATCH>.r<REVISION>.g<HEAD>`.

The `g` prefix was missing.
This commit is contained in:
Fabio Manganiello 2024-01-19 01:06:47 +01:00
parent aceb9b940a
commit a5b7e2b52e
Signed by: blacklight
GPG key ID: D90FBA7F76362774

View file

@ -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"