Skip to content

Commit

Permalink
fix(goreleaser): disable CGO
Browse files Browse the repository at this point in the history
  • Loading branch information
EtienneM committed Oct 15, 2024
1 parent 2da5e73 commit 91a19d5
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ builds:
binary: sand-agent
main: ./cmd/sand-agent
env:
- CGO_ENABLED=1
- CGO_ENABLED=0
goarch:
- 386
- amd64
Expand All @@ -29,21 +29,21 @@ builds:
archives:
- format: tar.gz
builds:
- sand-agent
- sand-agent-cli
- sand-agent
- sand-agent-cli
name_template: "{{ .ProjectName }}-v{{ .Version }}-{{ .Os }}-{{ .Arch }}"
wrap_in_directory: true
files:
- LICENSE
- README.md
- CHANGELOG.md
- LICENSE
- README.md
- CHANGELOG.md
checksum:
name_template: 'checksums.txt'
name_template: "checksums.txt"
snapshot:
name_template: "{{ incpatch .Version }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
- "^docs:"
- "^test:"

0 comments on commit 91a19d5

Please sign in to comment.