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