github.com/blueinnovationsgroup/can-go@v0.0.0-20230518195432-d0567cda0028/.goreleaser.yml (about)

     1  before:
     2    hooks:
     3      - go mod download
     4  
     5  builds:
     6    - id: cantool
     7      binary: cantool
     8      main: ./cmd/cantool/main.go
     9      env:
    10        - CGO_ENABLED=0
    11      goos:
    12        - linux
    13        - windows
    14        - darwin
    15  
    16  archives:
    17    - replacements:
    18        darwin: Darwin
    19        linux: Linux
    20        windows: Windows
    21        386: i386
    22        amd64: x86_64
    23  
    24  checksum:
    25    name_template: "checksums.txt"
    26  
    27  snapshot:
    28    name_template: "{{ .Tag }}-next"
    29  
    30  release:
    31    github:
    32    prerelease: auto