ci: remove v2-develop branch from build pipeline
Build and Push Docker Image / build (push) Successful in 20s
CI / Security audit (push) Successful in 37s
CI / Tests & coverage (push) Successful in 41s
CI / Security audit (pull_request) Successful in 34s
CI / Tests & coverage (pull_request) Successful in 39s

This commit is contained in:
2026-05-17 13:25:50 +01:00
parent 2b089871a0
commit 742f34f6eb
-4
View File
@@ -5,7 +5,6 @@ on:
branches: branches:
- 'release/**' - 'release/**'
- 'develop' - 'develop'
- 'v2-develop'
jobs: jobs:
build: build:
@@ -24,9 +23,6 @@ jobs:
if [ "$BRANCH" = "develop" ]; then if [ "$BRANCH" = "develop" ]; then
echo "tags=reg.i3omb.com/sofarr:develop" >> $GITHUB_OUTPUT echo "tags=reg.i3omb.com/sofarr:develop" >> $GITHUB_OUTPUT
echo "Building develop image (version ${VERSION})" 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 else
RELEASE_NAME=${BRANCH#release/} RELEASE_NAME=${BRANCH#release/}
TAGS="reg.i3omb.com/sofarr:${VERSION}" TAGS="reg.i3omb.com/sofarr:${VERSION}"