aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/github.com/tdewolff/minify/.goreleaser.yml
blob: afaa1cb56729614d0b6f6fbf3427200114c9e76f (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
builds:
    - binary: minify
      main: ./cmd/minify/
      ldflags: -s -w -X main.Version={{.Version}} -X main.Commit={{.Commit}} -X main.Date={{.Date}}
      env:
          - CGO_ENABLED=0
      goos:
          - linux
          - windows
          - darwin
          - freebsd
          - netbsd
          - openbsd
      goarch:
          - amd64
archive:
    format: tar.gz
    format_overrides:
        - goos: windows
          format: zip
    name_template: "{{.Binary}}_{{.Version}}_{{.Os}}_{{.Arch}}"
    files:
        - README.md
        - LICENSE.md
snapshot:
    name_template: "devel"
release:
    draft: true