From 671270dae2b4940ef13f4ad0f36810873b3bac54 Mon Sep 17 00:00:00 2001 From: Brian Clozel Date: Tue, 12 Jan 2021 10:56:52 +0100 Subject: [PATCH] Fix optional deployments regex in release CI pipeline This commit fixes the "optional-deployments" regex for ".zip" artifacts; "\" do not need to be escaped in YML single-quoted strings. --- ci/config/release-scripts.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/config/release-scripts.yml b/ci/config/release-scripts.yml index 032a42d671..1e70c90e68 100644 --- a/ci/config/release-scripts.yml +++ b/ci/config/release-scripts.yml @@ -3,7 +3,7 @@ logging: io.spring.concourse: DEBUG distribute: optional-deployments: - - '.*\\.zip' + - '.*\.zip' spring: main: - banner-mode: off \ No newline at end of file + banner-mode: off