github.com/braveheart12/just@v0.8.7/.goreleaser.yml (about)

     1  builds:
     2    - # Insolar daemon
     3      main: './cmd/insolard'
     4      binary: insolard
     5      env:
     6        - CGO_ENABLED=0
     7      goos:
     8        - linux
     9        - darwin
    10      goarch:
    11        - amd64
    12  
    13    - # Insolar client tool
    14      main: './cmd/insolar'
    15      binary: insolar
    16      env:
    17        - CGO_ENABLED=0
    18      goos:
    19        - linux
    20        - darwin
    21      goarch:
    22        - amd64
    23  
    24    - # Pulsar daemon
    25      main: './cmd/pulsard'
    26      binary: pulsard
    27      env:
    28        - CGO_ENABLED=0
    29      goos:
    30        - linux
    31        - darwin
    32      goarch:
    33        - amd64
    34  
    35    - # Go runner daemon
    36      main: './cmd/insgorund'
    37      binary: insgorund
    38      env:
    39        - CGO_ENABLED=0
    40      goos:
    41        - linux
    42        - darwin
    43      goarch:
    44        - amd64
    45  
    46    - # Golang contracts compiler tool
    47      main: './cmd/insgocc'
    48      binary: insgocc
    49      env:
    50        - CGO_ENABLED=0
    51      goos:
    52        - linux
    53        - darwin
    54      goarch:
    55        - amd64
    56  
    57  archive:
    58    replacements:
    59      darwin: Darwin
    60      linux: Linux
    61      windows: Windows
    62      386: i386
    63      amd64: x86_64
    64  
    65  checksum:
    66    name_template: 'checksums.txt'
    67  
    68  changelog:
    69    sort: asc
    70    filters:
    71      exclude:
    72      - '^docs:'
    73      - '^test:'
    74  
    75  release:
    76    draft: true
    77    prerelease: true
    78    name_template: "{{.Version}}"