From bfdb69d1ab4a8787c0849e096bd4cfcef6c5029c Mon Sep 17 00:00:00 2001
From: Jan Wennrich <jan.wennrich@pcsg.de>
Date: Fri, 24 May 2024 13:51:14 +0000
Subject: [PATCH] feat!: more major releases

---
 .gitlab-ci.yml | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index fc9a80d..fa4c540 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -19,10 +19,7 @@ release:
     - echo $RELEASED_MAJOR_VERSION
     - NEXT_MAJOR_VERSION=$((${RELEASED_MAJOR_VERSION}+1))
     - echo $NEXT_MAJOR_VERSION
-    - if [ "$CURRENT_MAJOR_VERSION" -gt 0 ] && [ "$RELEASED_MAJOR_VERSION" -gt "$CURRENT_MAJOR_VERSION" ]; then (\
-      curl -v --request POST --header "PRIVATE-TOKEN:${GITLAB_TOKEN}" "${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/repository/branches?branch=${CURRENT_MAJOR_VERSION}.x&ref=${CURRENT_VERSION}" && \
-      curl -v --request POST --header "PRIVATE-TOKEN:${GITLAB_TOKEN}" "${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/repository/branches?branch=next-${NEXT_MAJOR_VERSION}.x&ref=${RELEASED_MAJOR_VERSION}"\
-      ); fi
+    - if [ "$CURRENT_MAJOR_VERSION" -gt 0 ] && [ "$RELEASED_MAJOR_VERSION" -gt "$CURRENT_MAJOR_VERSION" ]; then (curl -v --request POST --header "PRIVATE-TOKEN:${GITLAB_TOKEN}" "${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/repository/branches?branch=${CURRENT_MAJOR_VERSION}.x&ref=${CURRENT_VERSION}" && curl -v --request POST --header "PRIVATE-TOKEN:${GITLAB_TOKEN}" "${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/repository/branches?branch=next-${NEXT_MAJOR_VERSION}.x&ref=${RELEASED_MAJOR_VERSION}"); fi
   rules:
     # Execute for default branch (should be master/main) and for version branches ('n.x' or 'n.n.x', where n is a number)
     - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
-- 
GitLab