release in s3_website-2.7.0 vs release in s3_website-2.7.1
- old
+ new
@@ -16,12 +16,11 @@
end
end
puts "Building s3_website.jar..."
jar_location = 'target/scala-2.11/s3_website.jar'
-run "./sbt clean"
-run "./sbt assembly"
+run "./sbt clean assembly"
# The bin s3_website uses the MD5 checksum to verify that the jar is not corrupted
jar_md5 = Digest::MD5.file(jar_location).hexdigest
File.write('resources/s3_website.jar.md5', jar_md5)
@@ -31,10 +30,10 @@
run "rake build"
client = Octokit::Client.new(:login => 'laurilehmijoki', :password => ENV['S3_WEBSITE_RELEASE_KEY'])
release = client.create_release(
- 'laurilehmijoki/s3_website',
+ 'laurilehmijoki/s3_website',
tag_name,
:body => "See https://github.com/laurilehmijoki/s3_website/blob/master/changelog.md##{version.gsub('.', '')}"
)
puts "Uploading s3_website.jar..."
client.upload_asset(release[:url], jar_location)