From fe47b36065c59b7972abd6b28368d829f266ba5c Mon Sep 17 00:00:00 2001 From: Jack Humbert Date: Mon, 3 Jul 2017 00:23:37 -0400 Subject: [PATCH] fix tag increment --- util/travis_compiled_push.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/util/travis_compiled_push.sh b/util/travis_compiled_push.sh index a6bf8311ba8..4936ca0ba71 100644 --- a/util/travis_compiled_push.sh +++ b/util/travis_compiled_push.sh @@ -31,7 +31,8 @@ NEFM=$(git diff --name-only -n 1 ${TRAVIS_COMMIT_RANGE} | grep -Ev '^(keyboards/ if [[ $NEFM -gt 0 ]] ; then echo "Essential files modified." git fetch --tags - lasttag=$(git tag | grep -Ev '\-' | xargs -I@ git log --format=format:"%ai @%n" -1 @ | sort -V | awk '{print $4}' | tail -1) + #lasttag=$(git describe --tags $(git rev-list --tags --max-count=10) | grep -Ev '\-' | xargs -I@ git log --format=format:"%ai @%n" -1 @ | sort -V | awk '{print $4}' | tail -1) + lasttag=$(git describe --tags $(git rev-list --tags --max-count=10) | grep -Ev '\-' | sort -V | tail -1) newtag=$(increment_version $lasttag) git tag $newtag git push --tags git@github.com:qmk/qmk_firmware.git