github.com/blend/go-sdk@v1.20220411.3/.goreleaser/coverage.yml (about)

     1  #
     2  # Copyright (c) 2021 - Present. Blend Labs, Inc. All rights reserved
     3  # Use of this source code is governed by a MIT license that can be found in the LICENSE file.
     4  #
     5  project_name: coverage
     6  builds:
     7  - main: "./cmd/coverage/main.go"
     8    binary: coverage
     9    env:
    10    - CGO_ENABLED=0
    11    goos:
    12    - darwin
    13    - linux
    14    - windows
    15    goarch:
    16    - amd64
    17    - arm
    18    - arm64
    19  
    20  archive:
    21    name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
    22    format: "tar.gz"
    23    format_overrides:
    24    - goos: windows
    25      format: zip
    26    files:
    27    - none*
    28  
    29  brew:
    30    name: coverage
    31    github:
    32      owner: blend
    33      name: homebrew-tap
    34    folder: Formula
    35    commit_author:
    36      name: baileydog
    37      email: baileydog@blend.com
    38    homepage: "https://github.com/blend/go-sdk/tree/master/cmd/coverage/README.md"
    39    description: "Coordinate coverage enforcement for golang repos."
    40  
    41  dist: dist/coverage
    42  
    43  checksum:
    44    name_template: '{{ .ProjectName }}_checksums.txt'
    45  
    46  snapshot:
    47    name_template: "{{ .ProjectName }}_SNAPSHOT_{{ .Commit }}"