github.com/grahambrereton-form3/tilt@v0.10.18/.goreleaser.yml (about)

     1  project_name: tilt
     2  before:
     3    hooks:
     4      - ./scripts/upload-assets.py latest
     5  builds:
     6  - env:
     7    main: ./cmd/tilt/main.go
     8    flags:
     9    - -tags=osusergo
    10    goos:
    11    - linux
    12    - darwin
    13    - windows
    14    goarch:
    15    - amd64
    16  archive:
    17    name_template: "{{ .ProjectName }}.{{ .Version }}.{{ .Os }}.{{ .Arch }}"
    18    replacements:
    19      windows: windows_ALPHA
    20      darwin: mac
    21      linux: linux
    22      386: i386
    23      amd64: x86_64
    24  checksum:
    25    name_template: 'checksums.txt'
    26  snapshot:
    27    name_template: "{{ .Tag }}-next"
    28  changelog:
    29    sort: asc
    30    filters:
    31      exclude:
    32      - '^docs:'
    33      - '^test:'
    34  brew:
    35    github:
    36      owner: windmilleng
    37      name: homebrew-tap
    38    commit_author:
    39      name: Windmill Engineering
    40      email: hi@windmill.engineering
    41    url_template: "http://github.com/windmilleng/tilt/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
    42    homepage: "https://tilt.build/"
    43    description: "Local Kubernetes development with no stress"
    44    test: |
    45      system "#{bin}/tilt version"
    46  
    47  # Uncomment these lines if you want to experiment with other
    48  # parts of the release process without releasing new binaries.
    49  # release:
    50  #  disable: true