28 lines
1 KiB
Ruby
28 lines
1 KiB
Ruby
class GithubRelease < Formula
|
|
desc "Create and edit releases on Github (and upload artifacts)"
|
|
homepage "https://github.com/aktau/github-release"
|
|
url "https://github.com/aktau/github-release/archive/v0.7.2.tar.gz"
|
|
sha256 "057d57b01cd45d0316e2d32b7593ff0f4bb493d4767b5701b21b54301d74ff48"
|
|
head "https://github.com/aktau/github-release.git"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "e94b764f5aaf43c51cbd03702d3a645ea572d797578f8ece2e1a582055782e9b" => :sierra
|
|
sha256 "a8a9c18b04a892300a0594f96dbd79862915522ab7f23c4e125a3334a660d16b" => :el_capitan
|
|
sha256 "4fa1eefc30b795cb2b49f7f15505d1d625aa2bbff9f2e06d39c9b8f2c29bd21a" => :yosemite
|
|
end
|
|
|
|
depends_on "go" => :build
|
|
|
|
def install
|
|
ENV["GOPATH"] = buildpath
|
|
system "make"
|
|
bin.install "github-release"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/github-release", "info", "--user", "aktau",
|
|
"--repo", "github-release",
|
|
"--tag", "v#{version}"
|
|
end
|
|
end
|