github.com/goreleaser/goreleaser@v1.25.1/www/docs/ci/woodpecker.md (about)

     1  # Woodpecker
     2  
     3  By default, woodpecker only fetches tags on `tag` events. If you are not using a tag event, you will need to override the git plugin like so:
     4  
     5  ```yaml
     6  clone:
     7    git:
     8      image: woodpeckerci/plugin-git
     9      settings:
    10        tags: true
    11  ```
    12  
    13  Here is how to set up a basic release pipeline with [Woodpecker](https://woodpecker-ci.org) and [Gitea](https://gitea.io).
    14  
    15  ```yaml
    16  pipeline:
    17    release:
    18      image: goreleaser/goreleaser
    19      commands:
    20        - goreleaser release
    21      secrets: [ gitea_token ]
    22      when:
    23        event: tag
    24  ```