...

Text file src/github.com/instrumenta/kubeval/.goreleaser.yml

Documentation: github.com/instrumenta/kubeval

     1before:
     2  hooks:
     3    - go mod download
     4builds:
     5- env:
     6  - CGO_ENABLED=0
     7  goos:
     8  - windows
     9  - linux
    10  - darwin 
    11archives:
    12- format: tar.gz
    13  format_overrides:
    14  - goos: windows
    15    format: zip
    16  name_template: "{{ .ProjectName  }}-{{ .Os  }}-{{ .Arch  }}"
    17checksum:
    18  name_template: 'checksums.txt'
    19snapshot:
    20  name_template: "{{ .Tag }}-next"
    21changelog:
    22  sort: asc
    23  filters:
    24    exclude:
    25    - '^docs:'
    26    - '^test:'
    27brews:
    28- github:
    29    owner: instrumenta
    30    name: homebrew-instrumenta
    31  folder: Formula
    32  description: "Validate your Kubernetes configurations"
    33  homepage: "https://github.com/instrumenta/kubeval"
    34  test: |
    35    system "#{bin}/kubeval --version"
    36scoop:
    37  bucket:
    38    owner: instrumenta
    39    name: scoop-instrumenta
    40  description: "Validate your Kubernetes configurations"
    41  homepage: "https://github.com/instrumenta/kubeval"

View as plain text