mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-04-13 11:50:34 +02:00
26 lines
686 B
Plaintext
26 lines
686 B
Plaintext
local name = "default_gitlab"
|
|
local version = "1.0.1"
|
|
|
|
food = {
|
|
name = name,
|
|
description = "A run pipe test formula and FOO=foo_is_bar",
|
|
license = "",
|
|
homepage = "https://gitlab.com/goreleaser",
|
|
version = version,
|
|
packages = {
|
|
{
|
|
os = "darwin",
|
|
arch = "amd64",
|
|
url = "https://dummyhost/download/v1.0.1/bin.tar.gz",
|
|
sha256 = "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
|
|
resources = {
|
|
{
|
|
path = "name",
|
|
installpath = "bin/name",
|
|
executable = true
|
|
},
|
|
}
|
|
},
|
|
}
|
|
}
|