Rakefile in chargebee-1.4.7 vs Rakefile in chargebee-1.4.8
- old
+ new
@@ -92,12 +92,12 @@
unless `git branch` =~ /^\* master$/
puts "You must be on the master branch to release!"
exit!
end
sh "git commit --allow-empty -a -m 'Release #{version}'"
- sh "git tag v#{version}"
- sh "git push origin master"
- sh "git push origin v#{version}"
+ #sh "git tag v#{version}"
+ #sh "git push origin master"
+ #sh "git push origin v#{version}"
sh "gem push pkg/#{name}-#{version}.gem"
end
desc "Build #{gem_file} into the pkg directory"
task :build => :gemspec do