From b2b201e1fac89f176f1b39f925bea6f89b63aafb Mon Sep 17 00:00:00 2001 From: Beth Skurrie Date: Fri, 28 Jul 2017 16:37:13 +1000 Subject: [PATCH] fix(build): Only push newly created tag, not all tags --- tasks/release.rake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/release.rake b/tasks/release.rake index 9bfa9bc..3a146d0 100644 --- a/tasks/release.rake +++ b/tasks/release.rake @@ -3,7 +3,7 @@ RELEASE_NOTES_PATH = "build/RELEASE_NOTES.md" desc 'Tag for release' task :tag_for_release do | t, args | - command = "git tag -a v#{VERSION} -m \"Releasing version #{VERSION}\" && git push origin --tags" + command = "git tag -a v#{VERSION} -m \"Releasing version #{VERSION}\" && git push origin v#{VERSION}" puts command puts `#{command}` end