Skip to content

Commit ee720e3

Browse files
authored
Merge pull request #40 from cocoide/bugfix/release-gomock-error
πŸ› GithubAction Error
2 parents 6068e65 + 0962258 commit ee720e3

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

β€Ž.github/workflows/release.ymlβ€Ž

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,11 @@ jobs:
1616
fetch-depth: 0 # Changelog γ‚’ζ­£γ—γε‹•δ½œγ•γ›γ‚‹γŸγ‚γ«εΏ…θ¦
1717

1818
- name: Install GoReleaser and mockgen
19-
run: go get github.com/golang/mock/mockgen
19+
run: |
20+
wget https://github.com/goreleaser/goreleaser/releases/latest/download/goreleaser_amd64 -O /tmp/goreleaser
21+
chmod +x /tmp/goreleaser
22+
sudo mv /tmp/goreleaser /usr/local/bin/goreleaser
23+
go get github.com/golang/mock/mockgen
2024
env:
2125
GO111MODULE: on
2226
# Go γ‚’γ‚»γƒƒγƒˆγ‚’γƒƒγƒ—

0 commit comments

Comments
Β (0)