github.com/Azure/tflint-ruleset-azurerm-ext@v0.6.0/.goreleaser.yml (about)

     1  # This is an example goreleaser.yaml file with some sane defaults.
     2  # Make sure to check the documentation at http://goreleaser.com
     3  env:
     4    - CGO_ENABLED=0
     5    - REPO_OWNER={{ .Env.REPO_OWNER }}
     6    - REPO_NAME={{ .Env.REPO_NAME }}
     7  builds:
     8    - targets:
     9        - darwin_amd64
    10        - darwin_arm64
    11        - linux_386
    12        - linux_amd64
    13        - linux_arm
    14        - linux_arm64
    15        - windows_386
    16        - windows_amd64
    17  archives:
    18    - id: zip
    19      name_template: "{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}"
    20      format: zip
    21      files:
    22        - none*
    23  changelog:
    24    skip: true
    25  checksum:
    26    name_template: 'checksums.txt'
    27  signs:
    28    - artifacts: checksum
    29  release:
    30    github:
    31      owner: Azure
    32      name: tflint-ruleset-azurerm-ext
    33  snapshot:
    34    name_template: "{{ .Tag }}-dev"