From 2a5b4014965b1170d4aa19517331a928ecb30a16 Mon Sep 17 00:00:00 2001
From: Timo Furrer <tfurrer@gitlab.com>
Date: Fri, 19 Jan 2024 14:40:26 +0100
Subject: [PATCH] Remove superfluous paren

---
 .gitlab-ci.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index cf0a92a..52ad8ec 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -175,7 +175,7 @@ gitlab-opentofu-image:deploy:latest:
     - echo "Creating release $CI_COMMIT_TAG"
     - AVAILABLE_OPENTOFU_VERSIONS=$(yq -r '.spec.inputs.opentofu_version.options | filter((. | test("\$.*")) == false) | .[] | "- [`" + . + "`](https://github.com/opentofu/opentofu/releases/tag/v" + . + ")"' templates/full-pipeline.yml)
     - export AVAILABLE_OPENTOFU_VERSIONS
-    - 'AVAILABLE_IMAGES=$(cat image*.txt | sort | sed -E "s/(\(digest: .*\))/\n  - \1/)"'
+    - 'AVAILABLE_IMAGES=$(cat image*.txt | sort | sed -E "s/(\(digest: .*\))/\n  - \1/"'
     - export AVAILABLE_IMAGES
     - cat .gitlab/release-template.md | envsubst > release-notes.md 
 
-- 
GitLab