1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-03-31 21:55:34 +02:00

20 lines
546 B
Markdown
Raw Permalink Normal View History

# 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`](../../cmd/goreleaser_release.md)
command, or via the skip property:
```yaml title=".goreleaser.yaml"
announce:
# Skip the announcing feature in some conditions, for instance, when
# publishing patch releases.
#
# Any value different from 'true' is evaluated to false.
#
# Templates: allowed.
skip: "{{gt .Patch 0}}"
```