Skip to content

Commit

Permalink
goreleaser cmd
Browse files Browse the repository at this point in the history
  • Loading branch information
RangelReale committed Oct 11, 2023
1 parent 69a9624 commit f3c9293
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,23 @@ before:
# You may remove this if you don't use go modules.
- go mod tidy
builds:
- skip: true
- id: macos #build:macos
goos: [darwin]
goarch: [amd64, arm64]
binary: bin/qdiimpl
main: ./cmd/qdiimpl

- id: linux #build:linux
goos: [linux]
goarch: [386, arm, amd64, arm64]
binary: bin/qdiimpl
main: ./cmd/qdiimpl

- id: windows #build:windows
goos: [windows]
goarch: [386, amd64, arm64]
binary: bin/qdiimpl
main: ./cmd/qdiimpl

archives:
- format: tar.gz
Expand Down

0 comments on commit f3c9293

Please sign in to comment.