Skip to content

Commit a2681c8

Browse files
committed
Add hashtags to release announcements
1 parent 99a2f8c commit a2681c8

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.goreleaser.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ announce:
9494
#
9595
# Default: '{{ .ProjectName }} {{ .Tag }} is out! Check it out at {{ .ReleaseURL }}'.
9696
# Templates: allowed.
97-
message_template: "{{ .ProjectName }} {{ .Tag }} is out! Check it out at {{ .ReleaseURL }}"
97+
message_template: "{{ .ProjectName }} {{ .Tag }} is out! Check it out at {{ .ReleaseURL }} #proxmox #linux #homelab"
9898
# Mastodon server URL.
9999
server: "{{ .Env.MASTODON_SERVER }}"
100100
bluesky:
@@ -106,7 +106,7 @@ announce:
106106
#
107107
# Default: '{{ .ProjectName }} {{ .Tag }} is out! Check it out at {{ .ReleaseURL }}'.
108108
# Templates: allowed.
109-
message_template: "{{ .ProjectName }} {{ .Tag }} is out! Check it out at {{ .ReleaseURL }}"
109+
message_template: "{{ .ProjectName }} {{ .Tag }} is out! Check it out at {{ .ReleaseURL }} #proxmox #linux #homelab"
110110
# The username of the account that will post to Bluesky.
111111
username: "{{ .Env.BLUESKY_USERNAME }}"
112112

scripts/post-release-announcement.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ def main() -> int:
138138
print("Release URL is required (use --release-url or RELEASE_URL)", file=sys.stderr)
139139
return 1
140140

141-
message = f"{args.project} {tag} is out! Check it out at {release_url}"
141+
message = f"{args.project} {tag} is out! Check it out at {release_url} #proxmox #linux #homelab"
142142

143143
posted = []
144144
if not args.bluesky_only:

0 commit comments

Comments
 (0)