mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Extract version from directory name if .git dir is missing (#1327)
* Extract version from directory name if .git dir is missing * Avoid using shell * Remove .gitinfo build from pipeline
This commit is contained in:
parent
af7c87dd7b
commit
173b30cd59
2 changed files with 3 additions and 10 deletions
10
Makefile
10
Makefile
|
@ -4,8 +4,9 @@ NODE_VERSION=$(shell cat .nvmrc)
|
|||
ifneq ("$(wildcard .git)","")
|
||||
GIT_SHA=$(shell git rev-parse --short HEAD)
|
||||
GIT_TAG=$(shell git describe --tags `git rev-list --tags --max-count=1`)
|
||||
else ifneq ("$(wildcard .gitinfo)","")
|
||||
include .gitinfo
|
||||
else
|
||||
GIT_SHA=source_archive
|
||||
GIT_TAG=$(patsubst navidrome-%,v%,$(notdir $(PWD)))
|
||||
endif
|
||||
|
||||
CI_RELEASER_VERSION=1.16.4-1 ## https://github.com/navidrome/ci-goreleaser
|
||||
|
@ -99,11 +100,6 @@ single: ##@Cross_Compilation Build binaries for a single supported platforms. It
|
|||
##########################################
|
||||
#### Miscellaneous
|
||||
|
||||
.gitinfo:
|
||||
@echo "export GIT_SHA=${GIT_SHA}" > .gitinfo
|
||||
@echo "export GIT_TAG=${GIT_TAG}" >> .gitinfo
|
||||
.PHONY: .gitinfo
|
||||
|
||||
release:
|
||||
@if [[ ! "${V}" =~ ^[0-9]+\.[0-9]+\.[0-9]+.*$$ ]]; then echo "Usage: make release V=X.X.X"; exit 1; fi
|
||||
go mod tidy
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue