Skip to content

🐛 GithubAction Error #40

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

Merged
merged 2 commits into from
Sep 9, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
🐛 Install goreleaser
{cocoide} committed Sep 9, 2023
commit 9a8b69c46eecee86e385b2fc8315b22b122934c3
6 changes: 5 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -16,7 +16,11 @@ jobs:
fetch-depth: 0 # Changelog を正しく動作させるために必要

- name: Install GoReleaser and mockgen
run: go get github.com/golang/mock/mockgen
run: |
wget https://github.com/goreleaser/goreleaser/releases/latest/download/goreleaser_amd64 -O /tmp/goreleaser
chmod +x /tmp/goreleaser
sudo mv /tmp/goreleaser /usr/local/bin/goreleaser
go get github.com/golang/mock/mockgen
env:
GO111MODULE: on
# Go をセットアップ