version_str based on tag

This commit is contained in:
Jörn-Michael Miehe 2022-02-21 16:44:22 +01:00
parent 52d54eddad
commit 2b0ec1cea2

View file

@ -3,9 +3,9 @@
this="$(readlink -f "${0}")" this="$(readlink -f "${0}")"
this_dir="$(dirname "${this}")" this_dir="$(dirname "${this}")"
git_branch="$(git rev-parse --abbrev-ref HEAD)" # git_branch="$(git rev-parse --abbrev-ref HEAD)"
git_tag="$(git describe --abbrev=0)" git_tag="$(git describe --abbrev=0)"
version_str="${git_branch##*/}" version_str="${git_tag##*/}"
version_str="0.2.0" version_str="0.2.0"
sed -ri "s/(version\s*:).*$/\1 '${version_str}'/" "${this_dir}/../example/kiwi.yml" sed -ri "s/(version\s*:).*$/\1 '${version_str}'/" "${this_dir}/../example/kiwi.yml"