From 2e56dbf7f914ea440c734f41c3e2828411cfa6d6 Mon Sep 17 00:00:00 2001 From: Eric Ernst Date: Mon, 30 Sep 2019 13:09:49 -0700 Subject: [PATCH] convenient script for pushing tag for testing Signed-off-by: Eric Ernst --- trigger-tags.sh | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 trigger-tags.sh diff --git a/trigger-tags.sh b/trigger-tags.sh new file mode 100644 index 000000000..8413a417c --- /dev/null +++ b/trigger-tags.sh @@ -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}"