mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-04-13 11:50:34 +02:00
82 lines
2.5 KiB
Plaintext
82 lines
2.5 KiB
Plaintext
local name = "Test"
|
|
local version = "0.1.3"
|
|
|
|
food = {
|
|
name = name,
|
|
description = "Some desc",
|
|
license = "",
|
|
homepage = "https://google.com",
|
|
version = version,
|
|
packages = {
|
|
{
|
|
os = "linux",
|
|
arch = "amd64",
|
|
url = "https://github.com/caarlos0/test/releases/download/v0.1.3/test_Linux_x86_64.tar.gz",
|
|
sha256 = "1633f61598ab0791e213135923624eb342196b3494909c91899bcd0560f84c67",
|
|
resources = {
|
|
{
|
|
path = "bin1",
|
|
installpath = "bin/bin1",
|
|
executable = true
|
|
},
|
|
{
|
|
path = "bin2",
|
|
installpath = "bin/bin2",
|
|
executable = true
|
|
},
|
|
{
|
|
path = "bin3",
|
|
installpath = "bin/bin3",
|
|
executable = true
|
|
},
|
|
}
|
|
},
|
|
{
|
|
os = "linux",
|
|
arch = "arm",
|
|
url = "https://github.com/caarlos0/test/releases/download/v0.1.3/test_Arm6.tar.gz",
|
|
sha256 = "1633f61598ab0791e213135923624eb342196b3494909c91899bcd0560f84c67",
|
|
resources = {
|
|
{
|
|
path = "bin1",
|
|
installpath = "bin/bin1",
|
|
executable = true
|
|
},
|
|
{
|
|
path = "bin2",
|
|
installpath = "bin/bin2",
|
|
executable = true
|
|
},
|
|
{
|
|
path = "bin3",
|
|
installpath = "bin/bin3",
|
|
executable = true
|
|
},
|
|
}
|
|
},
|
|
{
|
|
os = "linux",
|
|
arch = "arm64",
|
|
url = "https://github.com/caarlos0/test/releases/download/v0.1.3/test_Arm64.tar.gz",
|
|
sha256 = "1633f61598ab0791e213135923624eb342196b3494909c91899bcd0560f84c67",
|
|
resources = {
|
|
{
|
|
path = "bin1",
|
|
installpath = "bin/bin1",
|
|
executable = true
|
|
},
|
|
{
|
|
path = "bin2",
|
|
installpath = "bin/bin2",
|
|
executable = true
|
|
},
|
|
{
|
|
path = "bin3",
|
|
installpath = "bin/bin3",
|
|
executable = true
|
|
},
|
|
}
|
|
},
|
|
}
|
|
}
|