From 449ac6c984a7937fcffa302c9293a397cc23b3f5 Mon Sep 17 00:00:00 2001 From: Dan Petersen Date: Wed, 10 Feb 2021 04:26:40 +0100 Subject: [PATCH] Update workflows --- .github/workflows/test.yml | 2 +- .goreleaser.test.yml | 37 ------------------------------------- 2 files changed, 1 insertion(+), 38 deletions(-) delete mode 100644 .goreleaser.test.yml 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