github.com/goreleaser/goreleaser@v1.25.1/www/docs/customization/dist.md (about)

     1  # Dist folder
     2  
     3  By default, GoReleaser will create its artifacts in the `./dist` folder.
     4  If you must, you can change it by setting it in the `.goreleaser.yaml` file:
     5  
     6  ```yaml
     7  # .goreleaser.yaml
     8  #
     9  # Default: './dist'
    10  dist: another-folder-that-is-not-dist
    11  ```
    12  
    13  More often than not, you won't need to change this.
    14  
    15  !!! warning
    16  
    17      If you change this value, and use
    18      [`goreleaser continue`](/cmd/goreleaser_continue/),
    19      you'll need to specify `--dist` when running it.