Fix remote for release task

This commit is contained in:
Zachary Scott 2017-05-07 08:45:51 +09:00
parent d7c28052e5
commit 5397945a87
1 changed files with 2 additions and 2 deletions

View File

@ -212,8 +212,8 @@ if defined?(Gem)
git commit --allow-empty -a -m '#{source_version} release' &&
git tag -s v#{source_version} -m '#{source_version} release' &&
git tag -s #{source_version} -m '#{source_version} release' &&
git push && (git push sinatra || true) &&
git push --tags && (git push sinatra --tags || true)
git push && (git push origin || true) &&
git push --tags && (git push origin --tags || true)
SH
end