Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,4 @@ go.work.sum
bin/
oms-cli
oms-service
dist/
20 changes: 18 additions & 2 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ before:
- go mod tidy

builds:
- env:
- id: cli
env:
- CGO_ENABLED=0
goos:
- linux
Expand All @@ -15,7 +16,22 @@ builds:
- amd64
- arm64
- arm
main: ./cmd/cs
main: ./cli
binary: oms-cli

- id: service
env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
goarch:
- amd64
- arm64
- arm
main: ./service
binary: oms-service

changelog:
sort: asc
Expand Down