diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c9c6fa1f..cf98dd7e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -31,4 +31,4 @@ jobs: - name: Create snapshot run: | - goreleaser build --config .goreleaser.test.yml --parallelism 2 --rm-dist --snapshot --timeout 1h + goreleaser build --parallelism 2 --rm-dist --snapshot --timeout 1h diff --git a/.goreleaser.test.yml b/.goreleaser.test.yml deleted file mode 100644 index 467767b7..00000000 --- a/.goreleaser.test.yml +++ /dev/null @@ -1,37 +0,0 @@ -before: - hooks: - - go mod tidy -builds: -- env: - - CGO_ENABLED=0 - mod_timestamp: '{{ .CommitTimestamp }}' - flags: - - -trimpath - ldflags: - - '-s -w -X main.version={{.Version}} -X main.commit={{.Commit}}' - goos: - - freebsd - - windows - - linux - - darwin - goarch: - - amd64 - - '386' - - arm - - arm64 - ignore: - - goos: darwin - goarch: '386' - binary: '{{ .ProjectName }}_v{{ .Version }}' -archives: -- format: zip - name_template: '{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}' -checksum: - name_template: '{{ .ProjectName }}_{{ .Version }}_SHA256SUMS' - algorithm: sha256 -signs: - - artifacts: none -release: - draft: false -changelog: - skip: true