github.com/gopinath-langote/1build@v1.7.0/.goreleaser.yml (about)

     1  project_name: 1build
     2  builds:
     3    - env:
     4        - CGO_ENABLED=0
     5        - GO111MODULE=on
     6  before:
     7    hooks:
     8      - go mod tidy
     9  archives:
    10    - replacements:
    11        darwin: Darwin
    12        linux: Linux
    13        386: i386
    14        amd64: x86_64
    15  checksum:
    16    name_template: 'checksums.txt'
    17  snapshot:
    18    name_template: "{{ .Version }}-next"
    19  changelog:
    20    sort: asc
    21    filters:
    22      exclude:
    23        - '^docs:'
    24        - '^testing:'
    25  brews:
    26    -
    27      name: "one-build"
    28      github:
    29        owner: gopinath-langote
    30        name: homebrew-one-build
    31      commit_author:
    32        name: gopinath-langote
    33        email: gopinathlangote11@gmail.com
    34      folder: Formula
    35      homepage: "https://github.com/gopinath-langote/1build"
    36      description: "Frictionless way of managing project-specific commands"
    37      test: |
    38        system "#{bin}/1build --version"
    39      install: |
    40        bin.install "1build"
    41