1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-11-06 09:09:29 +02:00
Files
goreleaser/internal/pipe/gofish/testdata/TestFullFoodWindowsOnly.lua.golden
2021-09-28 20:16:39 -03:00

25 lines
646 B
Plaintext

local name = "Test"
local version = "0.1.3"
food = {
name = name,
description = "Some desc",
license = "",
homepage = "https://google.com",
version = version,
packages = {
{
os = "windows",
arch = "amd64",
url = "https://github.com/caarlos0/test/releases/download/v0.1.3/test_windows_amd64.zip",
sha256 = "1633f61598ab0791e213135923624eb342196b3494909c91899bcd0560f84c67",
resources = {
{
path = name .. ".exe",
installpath = "bin\\" .. name .. ".exe"
}
}
},
}
}