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 364873981f268507a42b9a12aaed611d9acdaad4 Author: Volkan Yazıcı <[email protected]> AuthorDate: Mon Sep 4 12:21:15 2023 +0200 Fix YAML escaping issue, 2nd time --- .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 9fc2772..eca16b0 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
