ci: add v2-develop branch to build pipeline (tags as sofarr:v2-develop)
All checks were successful
Build and Push Docker Image / build (push) Successful in 22s
CI / Security audit (push) Successful in 38s
CI / Tests & coverage (push) Successful in 39s

This commit is contained in:
2026-05-17 12:50:23 +01:00
parent 6b995a136d
commit 71880c6298

View File

@@ -5,6 +5,7 @@ on:
branches:
- 'release/**'
- 'develop'
- 'v2-develop'
jobs:
build:
@@ -23,6 +24,9 @@ jobs:
if [ "$BRANCH" = "develop" ]; then
echo "tags=reg.i3omb.com/sofarr:develop" >> $GITHUB_OUTPUT
echo "Building develop image (version ${VERSION})"
elif [ "$BRANCH" = "v2-develop" ]; then
echo "tags=reg.i3omb.com/sofarr:v2-develop" >> $GITHUB_OUTPUT
echo "Building v2-develop image (version ${VERSION})"
else
RELEASE_NAME=${BRANCH#release/}
TAGS="reg.i3omb.com/sofarr:${VERSION}"