1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

chore(travis): fix deployment of jenkins branch for bugfix tags

Bugfix tags contain backported patches, and thus they aren't shown by
the `git describe`. Thus trust that Travis provides correct branch name
for the tag to push to `for-jenkins-release` branch.
This commit is contained in:
Zetok Zalbavar 2017-06-06 20:09:21 +01:00
parent cf72136b14
commit 6b3e03ca6a
No known key found for this signature in database
GPG Key ID: C953D3880212068A

View File

@ -31,7 +31,7 @@ main() {
fi
cd qTox
git checkout $(git describe --abbrev=0) -b for-jenkins-release
git checkout "$TRAVIS_BRANCH" -b for-jenkins-release
git push --force "https://${GH_DEPLOY_JENKINS}@github.com/qTox/qTox.git"
}
main