This is an automated email from the ASF dual-hosted git repository.

vy pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/logging-parent.git


The following commit(s) were added to refs/heads/main by this push:
     new 6913eb2  Fix filename in CI script
6913eb2 is described below

commit 6913eb2e9ea4d1d884a8c757c5c114b99dd1b49f
Author: Volkan Yazıcı <[email protected]>
AuthorDate: Wed Sep 6 10:08:34 2023 +0200

    Fix filename in CI script
---
 .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 6a5b170..496ac90 100644
--- a/.github/workflows/deploy-release-reusable.yml
+++ b/.github/workflows/deploy-release-reusable.yml
@@ -116,7 +116,7 @@ jobs:
           export DIST_FILEPATH_SRC="${DIST_FILEPATH_PREFIX}-src.zip"
           export DIST_FILEPATH_BIN="${DIST_FILEPATH_PREFIX}-bin.zip"
           mv "target/src.zip" "$DIST_FILEPATH_SRC"
-          [ -f "$DIST_FILEPATH_SRC" ] && mv "target/bin.zip" 
"$DIST_FILEPATH_BIN"
+          test -f "target/bin.zip" && mv "$_" "$DIST_FILEPATH_BIN"
 
           # Create signature and checksum files
           for DIST_FILEPATH in "$DIST_FILEPATH_SRC" "$DIST_FILEPATH_BIN"; do

Reply via email to