From f78ec13749c627852744c9b3b923e2d4a80549be Mon Sep 17 00:00:00 2001 From: Shunsuke Suzuki Date: Wed, 12 Apr 2023 11:56:58 +0900 Subject: [PATCH] ci: update goreleaser 1.7.0 to 1.17.0 for windows/arm64 - https://github.com/gotestyourself/gotestsum/issues/323 I've confirmed the issue has been solved by updating goreleaser in my laptop. ``` goreleaser --clean --snapshot --config .project/goreleaser.yml ``` --- .circleci/config.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index def1aba5..124d8576 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -68,8 +68,8 @@ commands: - run: name: Install goreleaser command: | - wget https://github.com/goreleaser/goreleaser/releases/download/v1.7.0/goreleaser_Linux_x86_64.tar.gz - echo "e74934e7571991522324642ac7b032310f04baf192ce2a54db1dc323b97bcd7d goreleaser_Linux_x86_64.tar.gz" > checksum.txt + wget https://github.com/goreleaser/goreleaser/releases/download/v1.17.0/goreleaser_Linux_x86_64.tar.gz + echo "9fb13d0b9611794da8d71688a50b1f2ea221fcd5f2f4ad529f8b45ee909b2371 goreleaser_Linux_x86_64.tar.gz" > checksum.txt sha256sum -c checksum.txt tar -xf goreleaser_Linux_x86_64.tar.gz mkdir -p ./bin @@ -98,13 +98,13 @@ jobs: steps: run: name: build binaries - command: bin/goreleaser --rm-dist --snapshot --config .project/goreleaser.yml + command: bin/goreleaser --clean --snapshot --config .project/goreleaser.yml - when: condition: << parameters.publish >> steps: run: name: build and publish binaries - command: bin/goreleaser --rm-dist --skip-validate --config .project/goreleaser.yml + command: bin/goreleaser --clean --skip-validate --config .project/goreleaser.yml - store_artifacts: path: ./dist destination: dist