diff --git a/.gitignore b/.gitignore index 3def19f..aea20cd 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ vendor goanalytics-* cmd/devdash/devdash* .devdash* +.goreleaser.yml diff --git a/.goreleaser.yml b/.goreleaser.yml deleted file mode 100644 index 00df161..0000000 --- a/.goreleaser.yml +++ /dev/null @@ -1,31 +0,0 @@ ---- -before: - hooks: - - go mod download -builds: - - id: main - goos: - - windows - - darwin - - linux - main: ./cmd/devdash/devdash.go - env: - - CGO_ENABLED=0 -archives: - - builds: - - binary - replacements: - darwin: Darwin - linux: Linux - windows: Windows - 386: x86 - amd64: x86_64 - format_overrides: - - goos: windows -checksum: - name_template: 'checksums.txt' -snapshot: - name_template: "{{ .Tag }}-next" -changelog: - # Keep a manual, simpler changelog for now - skip: true