mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-26 04:22:05 +02:00
3c98e86620
* feat: artifacts.Remove Signed-off-by: Carlos A Becker <caarlos0@gmail.com> * feat: fatbinary Signed-off-by: Carlos A Becker <caarlos0@gmail.com> * feat: run fatbinary on pipeline Signed-off-by: Carlos A Becker <caarlos0@gmail.com> * feat: make archives work with fat binaries Signed-off-by: Carlos A Becker <caarlos0@gmail.com> * feat: make brew work with fat binaries Signed-off-by: Carlos A Becker <caarlos0@gmail.com> * feat: make gofish work with fat binaries Signed-off-by: Carlos A Becker <caarlos0@gmail.com> * test: archive binary fatbin Signed-off-by: Carlos A Becker <caarlos0@gmail.com> * docs: fat binaries Signed-off-by: Carlos A Becker <caarlos0@gmail.com> * test: fix on linux Signed-off-by: Carlos A Becker <caarlos0@gmail.com> * feat(ci): enable fat bins on goreleaser itself Signed-off-by: Carlos A Becker <caarlos0@gmail.com> * refactor: rename to universal binaries Signed-off-by: Carlos A Becker <caarlos0@gmail.com> * fix: config Signed-off-by: Carlos A Becker <caarlos0@gmail.com> * fix: rename prop Signed-off-by: Carlos A Becker <caarlos0@gmail.com>
21 lines
408 B
Plaintext
21 lines
408 B
Plaintext
# typed: false
|
|
# frozen_string_literal: true
|
|
|
|
# This file was generated by GoReleaser. DO NOT EDIT.
|
|
class Unibin < Formula
|
|
desc ""
|
|
homepage ""
|
|
version "1.0.1"
|
|
bottle :unneeded
|
|
depends_on :macos
|
|
|
|
on_macos do
|
|
url "https://dummyhost/download/v1.0.1/bin.tar.gz"
|
|
sha256 "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
|
|
end
|
|
|
|
def install
|
|
bin.install "unibin"
|
|
end
|
|
end
|