Skip to content

Commit

Permalink
ci: fix go mod
Browse files Browse the repository at this point in the history
  • Loading branch information
naivekun committed Apr 19, 2021
1 parent 683948f commit 3a6a6b7
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 295 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ jobs:
fi
- name: Build - Linux
run: GOOS=linux packr build -v . && zip release-linux.zip sign-your-horse
run: GOOS=linux go mod tidy && GOOS=linux packr build -v . && zip release-linux.zip sign-your-horse
- name: Build - Windows
run: GOOS=windows packr build -v . && zip release-windows.zip sign-your-horse.exe
run: GOOS=windows go mod tidy && GOOS=windows packr build -v . && zip release-windows.zip sign-your-horse.exe
- name: Build - MacOS
run: GOOS=darwin packr build -v . && zip release-macos.zip sign-your-horse
run: GOOS=darwin go mod tidy && GOOS=darwin packr build -v . && zip release-macos.zip sign-your-horse

- name: Create Release
id: create_release
Expand Down
Loading

0 comments on commit 3a6a6b7

Please sign in to comment.