forked from TrueCloudLab/frostfs-http-gw
[#190] Filter version tags for version calculation
Signed-off-by: anikeev-yadro <a.anikeev@yadro.com>
This commit is contained in:
parent
d8b04223d4
commit
6789dbc6a9
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/make -f
|
||||
|
||||
REPO ?= $(shell go list -m)
|
||||
VERSION ?= $(shell git describe --tags --dirty --always 2>/dev/null || cat VERSION 2>/dev/null || echo "develop")
|
||||
VERSION ?= $(shell git describe --tags --match "v*" --dirty --always 2>/dev/null || cat VERSION 2>/dev/null || echo "develop")
|
||||
GO_VERSION ?= 1.17
|
||||
LINT_VERSION ?= 1.46.2
|
||||
BUILD ?= $(shell date -u --iso=seconds)
|
||||
|
|
Loading…
Reference in a new issue