Sha256: 1e7e90b1438b380bc9bb8c02e98e0be4c7e446c263454239d63e2bd7b46a6adc

Contents?: true

Size: 963 Bytes

Versions: 2

Compression:

Stored size: 963 Bytes

Contents

#!/usr/bin/env ruby

require 'octokit'
require_relative 'lib/s3_website/version'

version = S3Website::VERSION
unless ENV['S3_WEBSITE_RELEASE_KEY']
  puts "Set the S3_WEBSITE_RELEASE_KEY environmental variable. It should be your personal GitHub access token."
  exit 1
end

def run(cmd)
  unless system(cmd)
    exit 1
  end
end

puts "Building s3_website.jar..."
run "./sbt clean"
run "./sbt assembly"

tag_name = "v#{version}"
run "git tag #{tag_name} && git push origin #{tag_name}"
run "git push"

run "rake build"

client = Octokit::Client.new(:login => 'laurilehmijoki', :password => ENV['S3_WEBSITE_RELEASE_KEY'])
release = client.create_release(
  '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], 'target/scala-2.11/s3_website.jar')
run "gem push pkg/s3_website-#{version}.gem"

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
s3_website-2.1.0 release
s3_website-2.0.1 release