2022-11-18 01:40:00 +02:00
|
|
|
# Mastodon
|
|
|
|
|
2022-11-18 01:54:57 +02:00
|
|
|
> Since: v1.13.0
|
|
|
|
|
2022-11-18 01:40:00 +02:00
|
|
|
For it to work, you'll need to create a new Mastodon app `https://social.yourdomain.tld/settings/applications/new`, and set
|
|
|
|
some environment variables on your pipeline:
|
|
|
|
|
|
|
|
- `MASTODON_CLIENT_ID`
|
|
|
|
- `MASTODON_CLIENT_SECRET`
|
|
|
|
- `MASTODON_ACCESS_TOKEN`
|
|
|
|
|
|
|
|
Then, you can add something like the following to your `.goreleaser.yaml` config:
|
|
|
|
|
|
|
|
```yaml
|
|
|
|
# .goreleaser.yaml
|
|
|
|
announce:
|
|
|
|
mastodon:
|
|
|
|
# Whether its enabled or not.
|
|
|
|
# Defaults to false.
|
|
|
|
enabled: true
|
|
|
|
|
|
|
|
# Message template to use while publishing.
|
|
|
|
# Defaults to `{{ .ProjectName }} {{ .Tag }} is out! Check it out at {{ .ReleaseURL }}`
|
|
|
|
message_template: 'Awesome project {{.Tag}} is out!'
|
2022-11-18 01:54:57 +02:00
|
|
|
|
|
|
|
# Mastodon server URL.
|
|
|
|
# Defaults to empty.
|
|
|
|
server: https://mastodon.social
|
2022-11-18 01:40:00 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
!!! tip
|
|
|
|
Learn more about the [name template engine](/customization/templates/).
|