From 8b8f55f5777398927a4a9280eabf9836d8cd155a Mon Sep 17 00:00:00 2001 From: Dan Anglin Date: Fri, 14 Feb 2020 13:25:28 +0000 Subject: [PATCH] chore: remove goreleaser config --- .goreleaser.yml | 51 ------------------------------------------------- 1 file changed, 51 deletions(-) delete mode 100644 .goreleaser.yml diff --git a/.goreleaser.yml b/.goreleaser.yml deleted file mode 100644 index bce15b9..0000000 --- a/.goreleaser.yml +++ /dev/null @@ -1,51 +0,0 @@ ---- -project_name: pominal - -before: - hooks: - - go mod download - -builds: -- binary: pominal - env: - - CGO_ENABLED=0 - flags: - - -a - - -v - goarch: - - 386 - - amd64 - goos: - - linux - id: pominal-build - ldflags: - - "-s -w -X main.version={{ .Version }} -X main.commit={{ .ShortCommit }} -X main.date={{ .Date }} -X main.goversion={{ .Env.GOVERSION }}" - -archives: -- files: - - LICENSE - - README.md - - assets/**/* - format: tar.gz - id: pominal-archive - name_template: "{{ .ProjectName }}-{{ .Version }}-{{ .Os }}-{{ .Arch }}" - replacements: - 386: i386 - amd64: x86_64 - wrap_in_directory: true - -checksum: - algorithm: sha256 - name_template: "{{ .ProjectName }}-{{ .Version }}-CHECKSUMS.txt" - -snapshot: - name_template: "SNAPSHOT-{{ .ShortCommit }}" - -changelog: - sort: desc - filters: - exclude: - - "^docs:" - - "^test:" - - "^chore:" - - "^ci:"