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