Skip to content

Commit

Permalink
Fix github action
Browse files Browse the repository at this point in the history
  • Loading branch information
iychoi committed Oct 12, 2022
1 parent 0584e8c commit 6eeb782
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,17 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
goos: [linux, darwin, windows]
goarch: ["386", amd64, arm, arm64]
goos: ["linux"]
goarch: ["386", "amd64", "arm", "arm64"]
include:
- goos: "windows"
goarch: "386"
- goos: "windows"
goarch: "amd64"
- goos: "darwin"
goarch: "amd64"
- goos: "darwin"
goarch: "arm64"
env:
PKG: "github.com/cyverse/gocommands"
steps:
Expand Down

0 comments on commit 6eeb782

Please sign in to comment.