1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-22 18:28:37 +00:00

align s3 files with docker naming (#31050)

docker images have `-nightly`, this will append the same to binaries
uploaded to s3.
This commit is contained in:
techknowlogick
2024-05-22 19:34:52 -04:00
committed by GitHub
parent c9eac51996
commit 90f4cf51a3
2 changed files with 2 additions and 2 deletions

View File

@@ -88,7 +88,7 @@ ifneq ($(GITHUB_REF_TYPE),branch)
GITEA_VERSION ?= $(VERSION)
else
ifneq ($(GITHUB_REF_NAME),)
VERSION ?= $(subst release/v,,$(GITHUB_REF_NAME))
VERSION ?= $(subst release/v,,$(GITHUB_REF_NAME))-nightly
else
VERSION ?= main
endif