summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/go-testfixtures/testfixtures/v3/.goreleaser.yml
blob: cab247177d013a303790504b8cdbd72d320a4259 (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
38
39
40
41
build:
  binary: testfixtures
  main: ./cmd/testfixtures
  goos:
    - windows
    - darwin
    - linux
  goarch:
    - 386
    - amd64
  ignore:
    - goos: darwin
      goarch: 386
  flags:
    - -tags=sqlite

archives:
  - name_template: "{{.Binary}}_{{.Os}}_{{.Arch}}"
    format_overrides:
      - goos: windows
        format: zip

release:
  draft: true

snapshot:
  name_template: "{{.Tag}}"

checksum:
  name_template: "testfixtures_checksums.txt"

nfpms:
  - vendor: testfixtures
    homepage: https://github.com/go-testfixtures/testfixtures
    maintainer: Andrey Nering <andrey.nering@gmail.com>
    description: Ruby on Rails like test fixtures for Go.
    license: MIT
    formats:
      - deb
      - rpm
    file_name_template: "{{.ProjectName}}_{{.Os}}_{{.Arch}}"