Skip to content

Commit

Permalink
Merge pull request #278 from Scalingo/fix/disable_cgo
Browse files Browse the repository at this point in the history
fix(goreleaser): disable CGO
  • Loading branch information
EtienneM authored Oct 15, 2024
2 parents 2da5e73 + 91a19d5 commit ff7e026
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 ff7e026

Please sign in to comment.