Back to Goreleaser

Bluesky

www/content/customization/announce/bluesky.md

2.15.4836 B
Original Source

To use Bluesky, you need to create an account, and set the following environment variable on your pipeline:

  • BLUESKY_APP_PASSWORD (create one here)

After this, you can add following section to your .goreleaser.yaml configuration:

yaml
announce:
  bluesky:
    # Whether it's enabled or not.
    #
    # Templates: allowed. {{< g_inline_version "v2.6" >}}
    enabled: true

    # Message template to use while publishing.
    #
    # Default: '{{ .ProjectName }} {{ .Tag }} is out! Check it out at {{ .ReleaseURL }}'.
    # Templates: allowed.
    message_template: "Awesome project {{.Tag}} is out!"

    # The username of the account that will post
    # to Bluesky
    username: "my-project.bsky.social"

{{< g_templates >}}