2021-09-28 03:43:00 +02:00
|
|
|
# Twitter
|
|
|
|
|
|
|
|
For it to work, you'll need to [create a new Twitter app](https://developer.twitter.com/en/portal/apps/new), and set
|
|
|
|
some environment variables on your pipeline:
|
|
|
|
|
|
|
|
- `TWITTER_CONSUMER_KEY`
|
|
|
|
- `TWITTER_CONSUMER_SECRET`
|
|
|
|
- `TWITTER_ACCESS_TOKEN`
|
|
|
|
- `TWITTER_ACCESS_TOKEN_SECRET`
|
|
|
|
|
2021-12-23 02:52:01 +02:00
|
|
|
Then, you can add something like the following to your `.goreleaser.yaml` config:
|
2021-09-28 03:43:00 +02:00
|
|
|
|
|
|
|
```yaml
|
2021-12-23 02:52:01 +02:00
|
|
|
# .goreleaser.yaml
|
2021-09-28 03:43:00 +02:00
|
|
|
announce:
|
|
|
|
twitter:
|
|
|
|
# Whether its enabled or not.
|
|
|
|
# Defaults to false.
|
|
|
|
enabled: true
|
|
|
|
|
|
|
|
# Message template to use while publishing.
|
2021-11-06 21:49:33 +02:00
|
|
|
# Defaults to `{{ .ProjectName }} {{ .Tag }} is out! Check it out at {{ .ReleaseURL }}`
|
2021-09-28 03:43:00 +02:00
|
|
|
message_template: 'Awesome project {{.Tag}} is out!'
|
|
|
|
```
|
|
|
|
|
|
|
|
!!! tip
|
|
|
|
Learn more about the [name template engine](/customization/templates/).
|