mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-08 18:04:14 +01:00
fix: release: Forgejo version is not set
LDFLAGS="-buildid=" must be set in the environment so the Makefile adds to it. Setting it via the make arguments overrides it and removes the -X "main.*Version" arguments which are used to set the Forgejo version of the binary. Regression introduced in [CHORE] Support reproducible builds' (#4970)
This commit is contained in:
parent
821875e057
commit
6c8d9823ac
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ WORKDIR ${GOPATH}/src/code.gitea.io/gitea
|
|||
RUN make clean
|
||||
RUN make frontend
|
||||
RUN go build contrib/environment-to-ini/environment-to-ini.go && xx-verify environment-to-ini
|
||||
RUN make RELEASE_VERSION=$RELEASE_VERSION GOFLAGS="-trimpath" LDFLAGS="-buildid=" go-check generate-backend static-executable && xx-verify gitea
|
||||
RUN LDFLAGS="-buildid=" make RELEASE_VERSION=$RELEASE_VERSION GOFLAGS="-trimpath" go-check generate-backend static-executable && xx-verify gitea
|
||||
|
||||
# Copy local files
|
||||
COPY docker/root /tmp/local
|
||||
|
|
Loading…
Reference in a new issue