From ff5f50cc3ad52b17e89d44c83e00096240a7148d Mon Sep 17 00:00:00 2001 From: Gronod Date: Wed, 27 May 2026 21:46:34 +0100 Subject: [PATCH] chore: remove reg.i3omb.com from build-image workflow Only publish container images to git.i3omb.com registry. --- .gitea/workflows/build-image.yml | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/.gitea/workflows/build-image.yml b/.gitea/workflows/build-image.yml index 9845f47..182783a 100644 --- a/.gitea/workflows/build-image.yml +++ b/.gitea/workflows/build-image.yml @@ -27,23 +27,17 @@ jobs: if [[ "$BRANCH" == develop* ]]; then # Sanitise branch name for tag: replace slashes with dashes SAFE_BRANCH=$(echo "$BRANCH" | tr '/' '-') - TAGS="reg.i3omb.com/sofarr:${SAFE_BRANCH}" - TAGS="${TAGS},git.i3omb.com/gandalf/sofarr:${SAFE_BRANCH}" + TAGS="git.i3omb.com/gandalf/sofarr:${SAFE_BRANCH}" echo "tags=${TAGS}" >> $GITHUB_OUTPUT echo "Building develop image tags: ${TAGS}" else RELEASE_NAME=${BRANCH#release/} - - # Primary registry tags - TAGS="reg.i3omb.com/sofarr:${VERSION}" - TAGS="${TAGS},reg.i3omb.com/sofarr:${RELEASE_NAME}" - TAGS="${TAGS},reg.i3omb.com/sofarr:latest" - + # Gitea package registry tags - TAGS="${TAGS},git.i3omb.com/gandalf/sofarr:${VERSION}" + TAGS="git.i3omb.com/gandalf/sofarr:${VERSION}" TAGS="${TAGS},git.i3omb.com/gandalf/sofarr:${RELEASE_NAME}" TAGS="${TAGS},git.i3omb.com/gandalf/sofarr:latest" - + echo "tags=${TAGS}" >> $GITHUB_OUTPUT echo "Building release image tags: ${TAGS}" fi