-
Notifications
You must be signed in to change notification settings - Fork 129
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ci: update goreleaser 1.7.0 to 1.17.0 for windows/arm64 #324
ci: update goreleaser 1.7.0 to 1.17.0 for windows/arm64 #324
Conversation
- #323 I've confirmed the issue has been solved by updating goreleaser in my laptop. ``` goreleaser --clean --snapshot --config .project/goreleaser.yml ```
@@ -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 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
--rm-dist
was deprecated.
https://goreleaser.com/deprecations/#-rm-dist
@@ -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 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for the fix!
Close #323
I've confirmed the issue has been solved by updating goreleaser in my laptop.
The warning was disappeared and the asset for windows/arm64 was built.