mirror of
https://github.com/strongdm/comply
synced 2025-02-22 18:46:11 +00:00
tgz releases
This commit is contained in:
parent
af48939756
commit
1c903416d4
15
Makefile
15
Makefile
@ -13,9 +13,10 @@ comply: assets $(GO_SOURCES)
|
|||||||
|
|
||||||
dist: clean
|
dist: clean
|
||||||
mkdir dist
|
mkdir dist
|
||||||
GOOS=darwin GOARCH=amd64 CGO_ENABLED=0 go build $(LDFLAGS) -o dist/comply-$(VERSION)-darwin-amd64 github.com/strongdm/comply/cmd/comply
|
GOOS=darwin GOARCH=amd64 CGO_ENABLED=0 go build -gcflags=-trimpath=$(GOPATH) -asmflags=-trimpath=$(GOPATH) $(LDFLAGS) -o dist/comply-$(VERSION)-darwin-amd64 github.com/strongdm/comply/cmd/comply
|
||||||
GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build $(LDFLAGS) -o dist/comply-$(VERSION)-linux-amd64 github.com/strongdm/comply/cmd/comply
|
GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -gcflags=-trimpath=$(GOPATH) -asmflags=-trimpath=$(GOPATH) $(LDFLAGS) -o dist/comply-$(VERSION)-linux-amd64 github.com/strongdm/comply/cmd/comply
|
||||||
|
cd dist && tar -czvf comply-$(VERSION)-darwin-amd64.tgz comply-$(VERSION)-darwin-amd64
|
||||||
|
cd dist && tar -czvf comply-$(VERSION)-linux-amd64.tgz comply-$(VERSION)-linux-amd64
|
||||||
clean:
|
clean:
|
||||||
rm -rf dist
|
rm -rf dist
|
||||||
rm -f comply
|
rm -f comply
|
||||||
@ -57,16 +58,16 @@ release: dist gh-release
|
|||||||
--user strongdm \
|
--user strongdm \
|
||||||
--repo comply \
|
--repo comply \
|
||||||
--tag $(VERSION) \
|
--tag $(VERSION) \
|
||||||
--name comply-$(VERSION)-darwin-amd64 \
|
--name comply-$(VERSION)-darwin-amd64.tgz \
|
||||||
--file dist/comply-$(VERSION)-darwin-amd64
|
--file dist/comply-$(VERSION)-darwin-amd64.tgz
|
||||||
|
|
||||||
github-release upload \
|
github-release upload \
|
||||||
--security-token $$GH_LOGIN \
|
--security-token $$GH_LOGIN \
|
||||||
--user strongdm \
|
--user strongdm \
|
||||||
--repo comply \
|
--repo comply \
|
||||||
--tag $(VERSION) \
|
--tag $(VERSION) \
|
||||||
--name comply-$(VERSION)-linux-amd64 \
|
--name comply-$(VERSION)-linux-amd64.tgz \
|
||||||
--file dist/comply-$(VERSION)-linux-amd64
|
--file dist/comply-$(VERSION)-linux-amd64.tgz
|
||||||
|
|
||||||
gh-release:
|
gh-release:
|
||||||
go get -u github.com/aktau/github-release
|
go get -u github.com/aktau/github-release
|
Loading…
x
Reference in New Issue
Block a user