Skip to content

Commit

Permalink
Disable cgo in release pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
fengye87 committed Dec 31, 2024
1 parent 17034b0 commit 4a8f759
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ jobs:
go-version: 1.23.4

- run: |
GOARCH=amd64 go build -o hud-linux-x86_64 main.go
GOARCH=arm64 go build -o hud-linux-aarch64 main.go
CGO_ENABLED=0 GOARCH=amd64 go build -o hud-linux-x86_64 main.go
CGO_ENABLED=0 GOARCH=arm64 go build -o hud-linux-aarch64 main.go
- uses: softprops/action-gh-release@v1
with:
Expand Down

0 comments on commit 4a8f759

Please sign in to comment.