From 6dbf259e44e64ab97af7b4da80d9a3e87a767c71 Mon Sep 17 00:00:00 2001 From: Stefan Allius Date: Sun, 21 Apr 2024 22:48:33 +0200 Subject: [PATCH] add postfix for rc and dev versions --- app/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/build.sh b/app/build.sh index ac8879d..07eefed 100755 --- a/app/build.sh +++ b/app/build.sh @@ -4,7 +4,7 @@ # rc: release candidate build # rel: release build and push to ghcr.io # Note: for release build, you need to set GHCR_TOKEN -# export GHCR_TOKEN= +# export GHCR_TOKEN= in your .profile # see also: https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-container-registry @@ -20,7 +20,7 @@ IMAGE=tsun-gen3-proxy if [[ $1 == dev ]] || [[ $1 == rc ]] ;then IMAGE=docker.io/sallius/${IMAGE} -VERSION=${VERSION} +VERSION=${VERSION}-$1 elif [[ $1 == rel ]];then IMAGE=ghcr.io/s-allius/${IMAGE} else