convenient script for pushing tag for testing

Signed-off-by: Eric Ernst <eric.ernst@intel.com>
This commit is contained in:
Eric Ernst
2019-09-30 13:09:49 -07:00
parent 3a752dbf9b
commit 2e56dbf7f9

6
trigger-tags.sh Normal file
View File

@@ -0,0 +1,6 @@
tag=1.9.0-alpha2
git tag -d "${tag}"
git push egernst HEAD :"${tag}"
git tag -a "${tag}" -m "test push"
git push egernst HEAD "${tag}"