mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
fix: only add the latest tag to version if the tag is attached to the current commit, or else use the branch name
This commit is contained in:
parent
99b1dc1421
commit
d4edff3aaa
1 changed files with 4 additions and 2 deletions
|
@ -33,8 +33,10 @@ COPY --from=jsbuilder /src/build/* /src/ui/build/
|
|||
COPY --from=jsbuilder /src/build/static/css/* /src/ui/build/static/css/
|
||||
COPY --from=jsbuilder /src/build/static/js/* /src/ui/build/static/js/
|
||||
RUN rm -rf /src/build/css /src/build/js
|
||||
RUN GIT_SHA=$(git rev-parse --short HEAD) && \
|
||||
GIT_TAG=$(git describe --tags --abbrev=0 2> /dev/null) && \
|
||||
RUN GIT_TAG=$(git name-rev --name-only HEAD) && \
|
||||
GIT_TAG=${GIT_TAG#"tags/"} && \
|
||||
GIT_SHA=$(git rev-parse --short HEAD) && \
|
||||
echo "Building version: ${GIT_TAG} (${GIT_SHA})" && \
|
||||
go-bindata -fs -prefix ui/build -tags embed -nocompress -pkg assets -o assets/embedded_gen.go ui/build/... && \
|
||||
go build -ldflags="-X main.gitSha=${GIT_SHA} -X main.gitTag=${GIT_TAG}" -tags=embed
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue