trying to release the kraken (onto gitea)
Some checks failed
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is failing

This commit is contained in:
Nils Stinnesbeck 2021-01-02 23:42:19 +01:00
parent 60781c4f42
commit 11ca8c237a

View File

@ -14,13 +14,24 @@ local pipeline(os, arch) = {
"tar -cvzf release/ubnt-freifunk-map-api_"+ os + "-" + arch + ".tar.gz -C release/" + os + "/" + arch + " ubnt-freifunk-map-api"
],
},
{
name: "gitea_release " + os + "/" + arch,
image: "plugins/gitea-release",
settings: {
api_key: { "$secret": "gitea_api_key" },
base_url: "https://git.freifunk-rhein-sieg.net",
files: "release/*.tar.gz"
},
when: {
event: "tag"
},
},
],
};
[
pipeline("linux", "amd64"),
pipeline("linux", "arm64"),
pipeline("darwin", "amd64"),
pipeline("darwin", "arm64"),
// pipeline("darwin", "arm64"),
pipeline("windows", "amd64"),
pipeline("windows", "arm64"),
]