Git tags lookup only works in Drone pipelines if tags have been pulled.

This commit is contained in:
Fabio Manganiello 2023-08-06 00:55:04 +02:00
parent d887553211
commit f9c74a3c98
Signed by untrusted user: blacklight
GPG key ID: D90FBA7F76362774

View file

@ -90,6 +90,7 @@ steps:
- echo "--- Parsing metadata"
- git config --global --add safe.directory $PWD
- git pull --tags
- export VERSION=$(python setup.py --version)
- export HEAD=$(git log | head -1 | awk '{printf "%.8s", $2}')
- export GIT_VERSION="$VERSION.r$(git log --pretty=oneline HEAD...v$VERSION | wc -l).$HEAD"