mirror of
https://github.com/go-gitea/gitea
synced 2025-08-02 07:38:35 +00:00
Properly handle drone tags and release/* branches (#466)
This commit is contained in:
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
|
||||
|
Reference in New Issue
Block a user