Fix Rakefile release task (tag pushing was missing origin)
This commit is contained in:
parent
44015665b9
commit
ce5a2a04e3
|
@ -1,3 +1,7 @@
|
||||||
|
== Edge
|
||||||
|
* Bug Fixes
|
||||||
|
* Fix Rakefile 'release' task (tag pushing was missing origin)
|
||||||
|
|
||||||
== 0.6.1
|
== 0.6.1
|
||||||
* Bug Fixes
|
* Bug Fixes
|
||||||
* Fix Markdown Pygments prefix and suffix (#178)
|
* Fix Markdown Pygments prefix and suffix (#178)
|
||||||
|
|
2
Rakefile
2
Rakefile
|
@ -120,7 +120,7 @@ task :release => :build do
|
||||||
sh "git commit --allow-empty -a -m 'Release #{version}'"
|
sh "git commit --allow-empty -a -m 'Release #{version}'"
|
||||||
sh "git tag v#{version}"
|
sh "git tag v#{version}"
|
||||||
sh "git push origin master"
|
sh "git push origin master"
|
||||||
sh "git push v#{version}"
|
sh "git push origin v#{version}"
|
||||||
sh "gem push pkg/#{name}-#{version}.gem"
|
sh "gem push pkg/#{name}-#{version}.gem"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue