diff --git a/.drone.jsonnet b/.drone.jsonnet index b769190..19f8daf 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -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" ] }, { diff --git a/.goreleaser.yaml b/.goreleaser.yaml index 88b95e2..1945c95 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -37,3 +37,5 @@ changelog: exclude: - '^docs:' - '^test:' +gitea_urls: + api: https://gitea.froth.zone/api/v1/ \ No newline at end of file