feat: move releasing to woodpecker

This commit is contained in:
Simon Cornet 2026-05-15 16:47:46 +02:00
commit 7bd39ea935
3 changed files with 32 additions and 17 deletions

View file

@ -1,12 +0,0 @@
---
stages:
- "linting"
- "testing"
- "releasing"
# include jobs
include:
- component: "$CI_SERVER_FQDN/components/golang/linting@v2.0.6"
- component: "$CI_SERVER_FQDN/components/golang/testing@v2.0.6"
- component: "$CI_SERVER_FQDN/components/golang/releasing@v2.0.6"

View file

@ -43,8 +43,8 @@ changelog:
- title: "📖 Documentation" - title: "📖 Documentation"
regexp: "^docs" regexp: "^docs"
# gitlab # gitea/forgejo
gitlab_urls: gitea_urls:
api: "https://gitlab.simoncor.net/api/v4/" api: "https://git.simoncor.net/api/v1"
download: "https://gitlab.simoncor.net" download: "https://git.simoncor.net"
use_package_registry: true skip_tls_verify: false

27
.woodpecker.yml Normal file
View file

@ -0,0 +1,27 @@
---
steps:
golang-lint:
image: "cr.simoncor.net/dockerhub/golangci/golangci-lint:v2.1-alpine"
commands:
- "golangci-lint run"
go-test:
image: "registry.gitlab.simoncor.net/oci/go-build:v25.06.03"
depends_on:
- "golang-lint"
commands:
- "go test ./..."
releasing:
image: "cr.simoncor.net/dockerhub/goreleaser/goreleaser:v2.10.2"
depends_on:
- "go-test"
secrets:
- "goreleaser_forgejo_token"
environment:
- "FORGEJO_TOKEN=$GORELEASER_FORGEJO_TOKEN"
commands:
- "goreleaser release --clean"
when:
event: "tag"