1
0
mirror of https://github.com/strongdm/comply synced 2025-12-15 10:43:47 +00:00

Compare commits

...

5 Commits

Author SHA1 Message Date
Justin McCarthy
4ee63d98a7 increment patch for release 2018-05-11 13:36:36 -07:00
Justin McCarthy
e53e8ed03d make GH_LOGIN validation common to all release entrypoints 2018-05-11 13:36:11 -07:00
Justin McCarthy
8182b587a5 increment patch for release 2018-05-11 13:34:48 -07:00
Justin McCarthy
a5b2780b3c abort releases 2018-05-11 13:34:34 -07:00
Justin McCarthy
85fc120c23 increment patch for release 2018-05-11 13:28:06 -07:00
2 changed files with 9 additions and 4 deletions

View File

@@ -59,7 +59,12 @@ cleanse:
git push -f origin master
git gc --aggressive --prune=all
release: dist release-deps
release-env:
ifndef GH_LOGIN
$(error GH_LOGIN must be set to a valid GitHub token)
endif
release: release-env dist release-deps
$(eval VERSION := $(shell git describe --tags --always --dirty="-dev"))
github-release release \
--security-token $$GH_LOGIN \
@@ -84,9 +89,9 @@ release: dist release-deps
--name comply-$(VERSION)-linux-amd64.tgz \
--file dist/comply-$(VERSION)-linux-amd64.tgz
patch-release: patch release
patch-release: release-env patch release
minor-release: minor release
minor-release: release-env minor release
patch: clean gitsem
gitsem -m "increment patch for release" patch

View File

@@ -1 +1 @@
1.1.11
1.1.14