2022-11-18 01:40:00 +02:00
|
|
|
# Mastodon
|
|
|
|
|
2023-04-02 22:16:21 +02:00
|
|
|
> Since: v1.13
|
2022-11-18 01:54:57 +02:00
|
|
|
|
2022-11-20 18:20:26 +02:00
|
|
|
For it to work, you'll need to create a new Mastodon app
|
|
|
|
`https://social.yourdomain.tld/settings/applications/new` with `write:statuses`
|
|
|
|
permissions, and set the following environment variables in your pipeline:
|
2022-11-18 01:40:00 +02:00
|
|
|
|
2022-11-20 18:20:26 +02:00
|
|
|
- `MASTODON_CLIENT_ID`: *"Client key"*.
|
|
|
|
- `MASTODON_CLIENT_SECRET`: *"Client secret"*.
|
|
|
|
- `MASTODON_ACCESS_TOKEN`: *"Your access token"*.
|
2022-11-18 01:40:00 +02:00
|
|
|
|
2022-11-20 18:20:26 +02:00
|
|
|
Then, you can add something like the following to your `.goreleaser.yaml`
|
|
|
|
configuration file:
|
2022-11-18 01:40:00 +02:00
|
|
|
|
|
|
|
```yaml
|
|
|
|
# .goreleaser.yaml
|
|
|
|
announce:
|
|
|
|
mastodon:
|
|
|
|
# Whether its enabled or not.
|
|
|
|
enabled: true
|
|
|
|
|
2023-04-02 22:16:21 +02:00
|
|
|
# Message to use while publishing.
|
|
|
|
#
|
|
|
|
# Default: '{{ .ProjectName }} {{ .Tag }} is out! Check it out at {{ .ReleaseURL }}'
|
|
|
|
# Templates: allowed
|
2022-11-18 01:40:00 +02:00
|
|
|
message_template: 'Awesome project {{.Tag}} is out!'
|
2022-11-18 01:54:57 +02:00
|
|
|
|
|
|
|
# Mastodon server URL.
|
|
|
|
server: https://mastodon.social
|
2022-11-18 01:40:00 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
!!! tip
|
|
|
|
Learn more about the [name template engine](/customization/templates/).
|