Skip to content

Commit

Permalink
Always specify GOARM parameter in CI
Browse files Browse the repository at this point in the history
It should simply get ignored when GOARCH is not "arm".
  • Loading branch information
jade-guiton-dd committed Oct 4, 2024
1 parent 974e969 commit 1a763c6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/base-ci-goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
env:
GOOS: ${{ matrix.GOOS }}
GOARCH: ${{ matrix.GOARCH }}
GOARM: ${{ matrix.GOARCH == 'arm' && '7' || '' }} # Default is 6
GOARM: 7 # Default is 6
GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }}

- name: Upload linux service packages
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/base-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
env:
GOOS: ${{ matrix.GOOS }}
GOARCH: ${{ matrix.GOARCH }}
GOARM: ${{ matrix.GOARCH == 'arm' && '7' || '' }} # Default is 6
GOARM: 7 # Default is 6
GITHUB_TOKEN: ${{ secrets.GH_PAT }}
COSIGN_YES: true
GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }}
Expand Down

0 comments on commit 1a763c6

Please sign in to comment.