1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-03-23 21:19:17 +02:00

27 lines
679 B
Markdown
Raw Normal View History

# LinkedIn
For it to work, you'll need to set some environment variables on your pipeline:
- `LINKEDIN_ACCESS_TOKEN`
2021-11-11 23:54:19 -03:00
!!! warning
We currently don't support posting in groups.
Then, you can add something like the following to your `.goreleaser.yaml` config:
```yaml
# .goreleaser.yaml
announce:
linkedin:
# Whether its enabled or not.
# Defaults to false.
enabled: true
# Message template to use while publishing.
2021-11-11 23:53:40 -03:00
# Defaults to `{{ .ProjectName }} {{ .Tag }} is out! Check it out at {{ .ReleaseURL }}`
message_template: 'Awesome project {{.Tag}} is out!'
```
!!! tip
Learn more about the [name template engine](/customization/templates/).