You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
v0.8.3 is not annotated tag so the VERSION variable in the Makefile always fails
# don't override user valuesifeq (,$(VERSION))
VERSION := $(shell git describe --exact-match 2>/dev/null)# if VERSION is empty, then populate it with branch's name and raw commit hash
ifeq (,$(VERSION))
VERSION := $(BRANCH)-$(COMMIT)
endif
endif
source/allora-network/allora-chain (tags/v0.8.3?) $ git describe --exact-match
fatal: no tag exactly matches 'cab7882d7d460813c0424b155b8f77979a3c4007'
non-annotated tags are generally not recommended, but if you want to make them work, you need to provide --tags
v0.8.3
is not annotated tag so theVERSION
variable in the Makefile always failsnon-annotated tags are generally not recommended, but if you want to make them work, you need to provide
--tags
It's up to you how to approach this issue. A workaround patch is in the #750
https://git-scm.com/book/en/v2/Git-Basics-Tagging
The text was updated successfully, but these errors were encountered: