mirror of
https://github.com/sinatra/sinatra
synced 2023-03-27 23:18:01 -04:00
improve rake release
This commit is contained in:
parent
f95cd8c191
commit
06ebbd97c0
1 changed files with 2 additions and 2 deletions
4
Rakefile
4
Rakefile
|
@ -144,8 +144,8 @@ if defined?(Gem)
|
||||||
sh <<-SH
|
sh <<-SH
|
||||||
gem install #{package('.gem')} --local &&
|
gem install #{package('.gem')} --local &&
|
||||||
gem push #{package('.gem')} &&
|
gem push #{package('.gem')} &&
|
||||||
git add sinatra.gemspec &&
|
git commit --allow-empty -a -m '#{source_version} release' &&
|
||||||
git commit --allow-empty -m '#{source_version} release' &&
|
git tag -s v#{source_version} -m '#{source_version} release' &&
|
||||||
git tag -s #{source_version} -m '#{source_version} release' &&
|
git tag -s #{source_version} -m '#{source_version} release' &&
|
||||||
git push && (git push sinatra || true) &&
|
git push && (git push sinatra || true) &&
|
||||||
git push --tags && (git push sinatra --tags || true)
|
git push --tags && (git push sinatra --tags || true)
|
||||||
|
|
Loading…
Reference in a new issue