Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 537 Bytes

woodpecker.md

File metadata and controls

24 lines (20 loc) · 537 Bytes

Woodpecker

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:

clone:
  git:
    image: woodpeckerci/plugin-git
    settings:
      tags: true

Here is how to set up a basic release pipeline with Woodpecker and Gitea.

pipeline:
  release:
    image: goreleaser/goreleaser
    commands:
      - goreleaser release
    secrets: [ gitea_token ]
    when:
      event: tag