github.com/fitzix/goreleaser@v0.92.0/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    # Default is `{{ .ProjectName }}_{{ .Version }}_checksums.txt`.
    18    name_template: "{{ .ProjectName }}_checksums.txt"
    19  ```
    20  
    21  > Learn more about the [name template engine](/templates).