forked from TrueCloudLab/certificates
VERSION from ENV should always take precedence over CI tags
This commit is contained in:
parent
7688ca18ac
commit
78c15805f4
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -38,7 +38,7 @@ bootstra%:
|
||||||
|
|
||||||
# If TRAVIS_TAG is set then we know this ref has been tagged.
|
# If TRAVIS_TAG is set then we know this ref has been tagged.
|
||||||
ifdef TRAVIS_TAG
|
ifdef TRAVIS_TAG
|
||||||
VERSION := $(TRAVIS_TAG)
|
VERSION ?= $(TRAVIS_TAG)
|
||||||
NOT_RC := $(shell echo $(VERSION) | grep -v -e -rc)
|
NOT_RC := $(shell echo $(VERSION) | grep -v -e -rc)
|
||||||
ifeq ($(NOT_RC),)
|
ifeq ($(NOT_RC),)
|
||||||
PUSHTYPE := release-candidate
|
PUSHTYPE := release-candidate
|
||||||
|
@ -47,7 +47,7 @@ PUSHTYPE := release
|
||||||
endif
|
endif
|
||||||
# GITHUB Actions
|
# GITHUB Actions
|
||||||
else ifdef GITHUB_REF
|
else ifdef GITHUB_REF
|
||||||
VERSION := $(shell echo $(GITHUB_REF) | sed 's/^refs\/tags\///')
|
VERSION ?= $(shell echo $(GITHUB_REF) | sed 's/^refs\/tags\///')
|
||||||
NOT_RC := $(shell echo $(VERSION) | grep -v -e -rc)
|
NOT_RC := $(shell echo $(VERSION) | grep -v -e -rc)
|
||||||
ifeq ($(NOT_RC),)
|
ifeq ($(NOT_RC),)
|
||||||
PUSHTYPE := release-candidate
|
PUSHTYPE := release-candidate
|
||||||
|
|
Loading…
Reference in a new issue