github.com/zmwangx/ets@v0.2.2-0.20201107170110-98f3846f5ca3/.goreleaser.yml (about)

     1  project_name: ets
     2  before:
     3    hooks:
     4      - go mod download
     5  builds:
     6    - env:
     7        - CGO_ENABLED=0
     8      ldflags:
     9        - -s -w -X main.version={{.Version}}
    10      goos:
    11        - darwin
    12        - linux
    13      goarch:
    14        - 386
    15        - amd64
    16        - arm
    17        - arm64
    18      goarm:
    19        - 6
    20        - 7
    21      ignore:
    22        - goos: darwin
    23          goarch: 386
    24  archives:
    25    - replacements:
    26        386: i386
    27  nfpms:
    28    - formats:
    29        - deb
    30        - rpm
    31      replacements:
    32        386: i386
    33      homepage: https://github.com/zmwangx/ets/
    34      maintainer: Zhiming Wang <i@zhimingwang.org>
    35      description: >
    36        command output timestamper
    37  
    38        ets prefixes each line of a command's output with a timestamp.
    39      license: MIT
    40      files:
    41        "ets.1": "/usr/share/man/man1/ets.1"
    42  release:
    43    draft: true
    44    prerelease: auto
    45  changelog:
    46    sort: asc
    47    filters:
    48      exclude:
    49        - "^docs:"
    50        - "^test:"