This is an automated email from the ASF dual-hosted git repository. vy pushed a commit to branch release/10.0.0 in repository https://gitbox.apache.org/repos/asf/logging-parent.git
commit fc5179cbed02240b1d6bf2ae6f8d42d4ac9a9629 Author: Volkan Yazıcı <[email protected]> AuthorDate: Mon Sep 4 12:15:30 2023 +0200 Fix YAML escaping issue --- .github/workflows/deploy-release-reusable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-release-reusable.yml b/.github/workflows/deploy-release-reusable.yml index 4f4ea81..9fc2772 100644 --- a/.github/workflows/deploy-release-reusable.yml +++ b/.github/workflows/deploy-release-reusable.yml @@ -31,7 +31,7 @@ on: # `distribution-*` input defaults should match the ones in `pom.xml`! distribution-attachment-filepath-pattern: description: The regex pattern matched against the full filepath for determining attachments to be included in the distribution - default: ^.*/target/log4j-(.+)-${project.version}(-tests)?\\.jar$ + default: ^.*/target/log4j-(.+)-${{ '$' }}{project.version}(-tests)?\\.jar$ type: string distribution-attachment-count: description: The number of attachments expected to be found
