1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-26 04:22:05 +02:00

590 B

Announce

GoReleaser can also announce new releases on social networks, chat rooms and via email!

It runs at the very end of the pipeline and can be skipped with the --skip-announce flag of the release command, or via the skip property:

# .goreleaser.yaml
announce:
  # Skip the announcing feature in some conditions, for instance, when publishing patch releases.
  # Valid options are `true`, `false`, empty, or a template that evaluates to a boolean (`true` or `false`).
  # Defaults to empty (which means false).
  skip: "{{gt .Patch 0}}"