Skip to content

Commit

Permalink
ARCO-186: add body to release config
Browse files Browse the repository at this point in the history
  • Loading branch information
pawellewandowski98 committed Nov 4, 2024
1 parent c479b21 commit f6e5b54
Showing 1 changed file with 17 additions and 6 deletions.
23 changes: 17 additions & 6 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ version: 2
before:
hooks:
- make test
# - make run_e2e_tests
snapshot:
name_template: "{{ .Tag }}"
changelog:
Expand All @@ -16,20 +17,30 @@ changelog:
- '^.github:'
- '^.vscode:'
- '^test:'
# ---------------------------
# Publishers
# ---------------------------
# publishers:
# - name: "Publish GoDocs"
# cmd: make godocs


# ---------------------------
# Builder
# ---------------------------
builds:
- skip: true

# ---------------------------
# Github Release
# ---------------------------
release:
prerelease: false
name_template: "Release v{{.Version}}"
body: |
## Release Notes for {{.Tag}}
- Released on: {{.Date}}
**Changelog:**
{{ .Changelog }}
**Checksums:**
{{ .Checksums }}
**Docker Image:**
You can find docker container at [Docker Hub](https://hub.docker.com/r/bsvb/arc)
or get it by running `docker pull bsvb/arc:{{.Version}}`

0 comments on commit f6e5b54

Please sign in to comment.