github.com/LGUG2Z/story@v0.4.1/.goreleaser.yml (about)

     1  project_name: story
     2  
     3  builds:
     4  - env:
     5    - CGO_ENABLED=0
     6    binary: story
     7    ldflags:
     8     - -X github.com/LGUG2Z/story/cli.Version={{ .Version }} -X github.com/LGUG2Z/story/cli.Commit={{ .Commit }}
     9    goarch:
    10      - amd64
    11  
    12  archive:
    13    files:
    14      - bash_autocomplete
    15      - zsh_autocomplete
    16  
    17  brew:
    18    name: story
    19    github:
    20      owner: LGUG2Z
    21      name: homebrew-tap
    22    folder: Formula
    23    homepage: "https://github.com/LGUG2Z/story"
    24    description: "A workflow tool for implementing stories across a node meta-repo"
    25    test: |
    26      system "#{bin}/story --version"
    27    install: |
    28      bin.install "story"
    29      bash_completion.install "bash_autocomplete" => "story"
    30      zsh_completion.install "zsh_autocomplete" => "_story"
    31  checksum:
    32    name_template: 'checksums.txt'
    33  
    34  snapshot:
    35    name_template: "{{ .Tag }}-snapshot"
    36  
    37  changelog:
    38    sort: asc
    39    filters:
    40      exclude:
    41      - '^docs:'
    42      - '^test:'