1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-26 04:22:05 +02:00
goreleaser/www/content/checksum.md
Carlos Alexandro Becker 8d444233d0
docs: name templates
2018-07-08 23:57:46 -07:00

22 lines
565 B
Markdown

---
title: Checksum
series: customization
hideFromIndex: true
weight: 50
---
GoReleaser generates a `project_1.0.0_checksums.txt` file and uploads it with the
release, so your users can validate if the downloaded files are correct.
The `checksum` section allows customizations of the filename:
```yml
# .goreleaser.yml
checksum:
# You can change the name of the checksums file.
# Default is `{{ .ProjectName }}_{{ .Version }}_checksums.txt`.
name_template: "{{ .ProjectName }}_checksums.txt"
```
> Learn more about the [name template engine](/templates).