You've already forked goreleaser
mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-11-06 09:09:29 +02:00
* docs: new docs with mkdocs Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * docs: new docs with mkdocs Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * docs: new docs with mkdocs Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * docs: new docs with mkdocs Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * docs: new docs with mkdocs Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * docs: new docs with mkdocs Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * docs: new docs with mkdocs Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * docs: new docs with mkdocs Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * fix: merge issues Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * fix: merge issues Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * fix: merge issues Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com> * feat: package.json for vercel/now deployment Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>
660 B
660 B
title
| title |
|---|
| Checksum |
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:
# .goreleaser.yml
checksum:
# You can change the name of the checksums file.
# Default is `{{ .ProjectName }}_{{ .Version }}_checksums.txt`.
name_template: "{{ .ProjectName }}_checksums.txt"
# Algorithm to be used.
# Accepted options are sha256, sha512, sha1, crc32, md5, sha224 and sha384.
# Default is sha256.
algorithm: sha256
Learn more about the name template engine.