1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-10 03:47:03 +02:00
goreleaser/www/docs/customization/announce/index.md
Carlos Alexandro Becker a2ba9cb8fa
refactor: release url (#2637)
* refactor: release url

* chore: fmt

* chore: less diffs

* docs: lowercase everything

* chore: improve fmt

* chore: revert
2021-11-06 16:54:01 -03:00

589 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.yml
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}}"