summaryrefslogtreecommitdiffstats
path: root/.goreleaser.yml
blob: ba7837ad95904ed972cdca3d1d2c5bdcb2d47842 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
before:
  hooks:
  - go mod download
builds:
- env:
  - CGO_ENABLED=0
  goos:
  - darwin
  - linux
  - windows
  goarch:
  - amd64
  - 386
checksum:
  name_template: 'checksums.txt'
snapshot:
  name_template: "{{ .Env.SNAPSHOT_VERSION }}"
archive:
  name_template: '{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}'
  replacements:
    darwin: Darwin
    linux: Linux
    windows: Windows
    386: i386
    amd64: x86_64
  format_overrides:
  - goos: windows
    format: zip
brew:
  github:
    owner: nektos
    name: homebrew-tap
  folder: Formula
  homepage:  https://github.com/nektos/act
  description: Run GitHub Actions locally
  test: |
    system "#{bin}/act --version"