Skip to content

Commit

Permalink
cicd: invalid goos+goarch pair
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 9, 2020
1 parent 6326327 commit 58a987d
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/cut-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,9 @@ jobs:
goos: ['linux', 'windows', 'darwin']
exclude:
- goos: darwin
goarch: 386
goarch: '386'
- goos: windows
goarch: arm64
env:
GOOS: ${{matrix.goos}}
GOARCH: ${{matrix.goarch}}
Expand All @@ -81,7 +83,7 @@ jobs:
release:
name: Release
runs-on: 'ubuntu-latest'
needs: release-archive
needs: [release-archive, release-binaries]
outputs:
upload_url: ${{ steps.create_release.outputs.upload_url }}
steps:
Expand Down Expand Up @@ -130,7 +132,9 @@ jobs:
goos: ['linux', 'windows', 'darwin']
exclude:
- goos: darwin
goarch: 386
goarch: '386'
- goos: windows
goarch: arm64
steps:
- name: Fetch Archive
uses: actions/download-artifact@v2
Expand Down Expand Up @@ -182,6 +186,7 @@ jobs:
deploy-documentation:
name: Deploy Documentation
runs-on: ubuntu-latest
needs: [release]
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down

0 comments on commit 58a987d

Please sign in to comment.