Browse Source

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.
pull/26385/head
Brian Clozel 4 years ago
parent
commit
671270dae2
  1. 4
      ci/config/release-scripts.yml

4
ci/config/release-scripts.yml

@ -3,7 +3,7 @@ logging: @@ -3,7 +3,7 @@ logging:
io.spring.concourse: DEBUG
distribute:
optional-deployments:
- '.*\\.zip'
- '.*\.zip'
spring:
main:
banner-mode: off
banner-mode: off

Loading…
Cancel
Save