From 9c8e8d0b97e255f6c7613c7414b61edbc150700c Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Fri, 19 Feb 2021 16:19:47 +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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/config/release-scripts.yml b/ci/config/release-scripts.yml index 032a42d6..24309188 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