2021-09-27 22:43:00 -03:00
|
|
|
# Announce
|
|
|
|
|
2023-04-02 17:16:21 -03:00
|
|
|
GoReleaser can also announce new releases on social networks, chat rooms and via
|
|
|
|
email!
|
2021-09-27 22:43:00 -03:00
|
|
|
|
2023-04-02 17:16:21 -03:00
|
|
|
It runs at the very end of the pipeline and can be skipped with the
|
2024-07-08 23:30:10 -03:00
|
|
|
`--skip=announce` flag of the [`release`](../../cmd/goreleaser_release.md)
|
|
|
|
command, or via the skip property:
|
2021-09-28 22:33:04 -03:00
|
|
|
|
2024-11-29 11:17:45 -03:00
|
|
|
```yaml title=".goreleaser.yaml"
|
2021-09-28 22:33:04 -03:00
|
|
|
announce:
|
2023-04-02 17:16:21 -03:00
|
|
|
# Skip the announcing feature in some conditions, for instance, when
|
|
|
|
# publishing patch releases.
|
|
|
|
#
|
|
|
|
# Any value different from 'true' is evaluated to false.
|
|
|
|
#
|
2024-06-19 11:44:22 -03:00
|
|
|
# Templates: allowed.
|
2021-09-28 22:33:04 -03:00
|
|
|
skip: "{{gt .Patch 0}}"
|
|
|
|
```
|