mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Add git version info to release source (#1250)
This commit is contained in:
parent
f78257235e
commit
5064cb2a46
3 changed files with 13 additions and 1 deletions
9
Makefile
9
Makefile
|
@ -1,8 +1,12 @@
|
|||
GO_VERSION=$(shell grep "^go " go.mod | cut -f 2 -d ' ')
|
||||
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
|
||||
endif
|
||||
|
||||
CI_RELEASER_VERSION=1.16.4-1 ## https://github.com/navidrome/ci-goreleaser
|
||||
|
||||
|
@ -92,6 +96,11 @@ 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