github.com/ldez/motoko@v0.3.0/.goreleaser.yml (about)

     1  project_name: motoko
     2  
     3  builds:
     4    - binary: motoko
     5      env:
     6        - GO111MODULE=on
     7      goos:
     8        - windows
     9        - darwin
    10        - linux
    11        - freebsd
    12        - openbsd
    13      goarch:
    14        - amd64
    15        - 386
    16        - arm
    17        - arm64
    18      goarm:
    19        - 7
    20        - 6
    21        - 5
    22  
    23      ignore:
    24        - goos: darwin
    25          goarch: 386
    26        - goos: openbsd
    27          goarch: arm
    28        - goos: freebsd
    29          goarch: arm
    30  
    31  changelog:
    32    sort: asc
    33    filters:
    34      exclude:
    35        - '^docs:'
    36        - '^doc:'
    37        - '^chore:'
    38        - '^test:'
    39        - '^tests:'
    40  
    41  archives:
    42    - id: motoko
    43      name_template: '{{ .ProjectName }}_v{{ .Version }}_{{ .Os }}_{{ .Arch }}{{ if .Arm}}v{{ .Arm }}{{ end }}'
    44      format: tar.gz
    45      format_overrides:
    46        - goos: windows
    47          format: zip
    48      files:
    49        - LICENSE
    50  
    51  brews:
    52    - repository:
    53        owner: ldez
    54        name: homebrew-tap
    55      commit_author:
    56        name: ldez
    57        email: ldez@users.noreply.github.com
    58      folder: Formula
    59      homepage: https://github.com/ldez/motoko
    60      description: Based on Go modules, update a dependency to a major version
    61      test: |
    62        system "#{bin}/motoko version"
    63  
    64  scoops:
    65    - repository:
    66        owner: ldez
    67        name: scoop-bucket
    68      commit_author:
    69        name: ldez
    70        email: ldez@users.noreply.github.com
    71      homepage: https://github.com/ldez/motoko
    72      description: Based on Go modules, update a dependency to a major version.
    73      license: APACHE