github.com/szyn/goreleaser@v0.76.1-0.20180517112710-333da09a1297/www/content/checksum.md (about)

     1  ---
     2  title: Checksum
     3  series: customization
     4  hideFromIndex: true
     5  weight: 50
     6  ---
     7  
     8  GoReleaser generates a `project_1.0.0_checksums.txt` file and uploads it with the
     9  release, so your users can validate if the downloaded files are correct.
    10  
    11  The `checksum` section allows customizations of the filename:
    12  
    13  ```yml
    14  # .goreleaser.yml
    15  checksum:
    16    # You can change the name of the checksums file.
    17    # This is parsed with the Go template engine and the following variables
    18    # are available:
    19    # - ProjectName
    20    # - Tag
    21    # - Version (Git tag without `v` prefix)
    22    # - Env (environment variables)
    23    # Default is `{{ .ProjectName }}_{{ .Version }}_checksums.txt`.
    24    name_template: "{{ .ProjectName }}_checksums.txt"
    25  ```