forked from TrueCloudLab/frostfs-s3-gw
[#653] Filter version tags for version calculation
Signed-off-by: anikeev-yadro <a.anikeev@yadro.com>
This commit is contained in:
parent
8eb1afbcb8
commit
c0de8f41fc
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
# Common variables
|
# Common variables
|
||||||
REPO ?= $(shell go list -m)
|
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 --dirty --match "v*" --always 2>/dev/null || cat VERSION 2>/dev/null || echo "develop")
|
||||||
GO_VERSION ?= 1.17
|
GO_VERSION ?= 1.17
|
||||||
LINT_VERSION ?= 1.46.2
|
LINT_VERSION ?= 1.46.2
|
||||||
BINDIR = bin
|
BINDIR = bin
|
||||||
|
|
Loading…
Reference in a new issue