Signed-off-by: Sam Therapy <sam@samtherapy.net>
This commit is contained in:
parent
80648e08f6
commit
b3001e3887
2 changed files with 11 additions and 1 deletions
|
@ -7,6 +7,13 @@ local testing(version, arch) = {
|
|||
arch: arch
|
||||
},
|
||||
steps: [
|
||||
{
|
||||
name: "submodules",
|
||||
image: "alpine/git",
|
||||
commands: [
|
||||
"git submodule update --init --recursive"
|
||||
]
|
||||
},
|
||||
{
|
||||
name: "lint",
|
||||
image: "rancher/drone-golangci-lint:latest"
|
||||
|
@ -33,7 +40,8 @@ local release() = {
|
|||
name: "fetch",
|
||||
image: "docker:git",
|
||||
commands : [
|
||||
"git fetch --tags"
|
||||
"git fetch --tags",
|
||||
"git submodule update --init --recursive"
|
||||
]
|
||||
},
|
||||
{
|
||||
|
|
|
@ -37,3 +37,5 @@ changelog:
|
|||
exclude:
|
||||
- '^docs:'
|
||||
- '^test:'
|
||||
gitea_urls:
|
||||
api: https://gitea.froth.zone/api/v1/
|
Loading…
Reference in a new issue