github.com/goreleaser/goreleaser@v1.25.1/www/docs/customization/announce/index.md (about) 1 # Announce 2 3 GoReleaser can also announce new releases on social networks, chat rooms and via 4 email! 5 6 It runs at the very end of the pipeline and can be skipped with the 7 `--skip-announce` flag of the [`release`](/cmd/goreleaser_release/) command, or 8 via the skip property: 9 10 ```yaml 11 # .goreleaser.yaml 12 announce: 13 # Skip the announcing feature in some conditions, for instance, when 14 # publishing patch releases. 15 # 16 # Any value different from 'true' is evaluated to false. 17 # 18 # Templates: allowed 19 skip: "{{gt .Patch 0}}" 20 ```