Skip to content

Commit

Permalink
cicd: fix goos/goarch
Browse files Browse the repository at this point in the history
Signed-off-by: Hank Donnay <hdonnay@redhat.com>
  • Loading branch information
hdonnay committed Oct 8, 2020
1 parent 61ce675 commit f6a28c2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/cut-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ jobs:
needs: release-archive
strategy:
matrix:
goos: ['arm64', 'amd64', '386']
goarch: ['linux', 'windows', 'darwin']
goarch: ['arm64', 'amd64', '386']
goos: ['linux', 'windows', 'darwin']
exclude:
- goos: darwin
goarch: 386
Expand Down Expand Up @@ -126,8 +126,8 @@ jobs:
needs: [release-archive, release]
strategy:
matrix:
goos: ['arm64', 'amd64', '386']
goarch: ['linux', 'windows', 'darwin']
goarch: ['arm64', 'amd64', '386']
goos: ['linux', 'windows', 'darwin']
exclude:
- goos: darwin
goarch: 386
Expand Down

0 comments on commit f6a28c2

Please sign in to comment.