Skip to content

Commit

Permalink
(fix) arm
Browse files Browse the repository at this point in the history
  • Loading branch information
kevincobain2000 committed Jun 26, 2024
1 parent f5b690a commit e7e2ad8
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ jobs:
with:
version: 'mod'

- name: Install cross compilation dependencies
run: |
sudo apt-get update
sudo apt-get install -y gcc-arm-linux-gnueabi gcc-aarch64-linux-gnu
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
with:
Expand Down
16 changes: 14 additions & 2 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,23 @@ builds:
- CGO_ENABLED=1
goos:
- linux
# - darwin
# - windows
# - freebsd
goarch:
# - amd64
- amd64
- arm64
- arm
ignore:
- goos: linux
- goos: windows
goarch: arm64
- goos: freebsd
goarch: arm64
- goos: windows
goarch: arm
- goos: freebsd
goarch: arm
- goos: darwin
goarch: arm
archives:
-
Expand Down

0 comments on commit e7e2ad8

Please sign in to comment.