Properly handle drone tags and release/* branches (#466)
This commit is contained in:
parent
7b67347104
commit
6aacf4d2f0
3 changed files with 29 additions and 11 deletions
4
Makefile
4
Makefile
|
@ -15,10 +15,10 @@ SOURCES ?= $(shell find . -name "*.go" -type f)
|
|||
TAGS ?=
|
||||
|
||||
ifneq ($(DRONE_TAG),)
|
||||
VERSION ?= $(DRONE_TAG)
|
||||
VERSION ?= $(subst v,,$(DRONE_TAG))
|
||||
else
|
||||
ifneq ($(DRONE_BRANCH),)
|
||||
VERSION ?= $(DRONE_BRANCH)
|
||||
VERSION ?= $(subst release/v,,$(DRONE_BRANCH))
|
||||
else
|
||||
VERSION ?= master
|
||||
endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue