We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa4a4d4 commit 6ba4edfCopy full SHA for 6ba4edf
Makefile
@@ -1,7 +1,7 @@
1
.PHONY: all deps osxkeychain secretservice test validate wincred
2
3
TRAVIS_OS_NAME ?= linux
4
-VERSION = 0.5.1
+VERSION := $(shell grep 'const Version' credentials/version.go | awk -F'"' '{ print $$2 }')
5
6
all: test
7
@@ -23,6 +23,7 @@ codesign: osxkeychain
23
24
osxrelease: clean test codesign
25
mkdir -p release
26
+ @echo "\nPackaging version ${VERSION}\n"
27
cd bin && tar cvfz ../release/docker-credential-osxkeychain-v$(VERSION)-amd64.tar.gz docker-credential-osxkeychain
28
29
secretservice:
0 commit comments