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

karan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/druid.git


The following commit(s) were added to refs/heads/master by this push:
     new b1ede3a22f5 Fix condition for uploading artifacts in worker.yml 
(#17708)
b1ede3a22f5 is described below

commit b1ede3a22f5fe18486ad239e0615dd93c167cfd9
Author: Akshat Jain <[email protected]>
AuthorDate: Mon Feb 10 07:47:12 2025 +0530

    Fix condition for uploading artifacts in worker.yml (#17708)
---
 .github/workflows/worker.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/worker.yml b/.github/workflows/worker.yml
index b22489b1bd8..e890637d147 100644
--- a/.github/workflows/worker.yml
+++ b/.github/workflows/worker.yml
@@ -73,7 +73,7 @@ jobs:
 
       - name: Upload artifact
         uses: actions/upload-artifact@v4
-        if: ${{ failure() }} || ${{ inputs.artifact_prefix != '' }}
+        if: ${{ failure() || inputs.artifact_prefix != '' }}
         with:
           name: "${{ inputs.artifact_prefix }}-${{ env.HASH }}"
           path: |


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to