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