Skip to content

Commit

Permalink
fix(build): Only push newly created tag, not all tags
Browse files Browse the repository at this point in the history
  • Loading branch information
bethesque committed Jul 28, 2017
1 parent a6447e2 commit b2b201e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/release.rake
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b2b201e

Please sign in to comment.