From a8e305db92d7e177fd1d4524bc46386cd2a3aea6 Mon Sep 17 00:00:00 2001 From: Saroj <43822041+sarojsarab@users.noreply.github.com> Date: Wed, 31 May 2023 12:55:26 +0530 Subject: [PATCH] ci: Fix to download the docker image from current run in case run id is not provided (#23903) ## Description - Fix to download the docker image from current run in case run id is not provided #### Type of change - Workflow changes ## Testing > #### How Has This Been Tested? - Workflow runs --- .github/workflows/ci-test-limited.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-test-limited.yml b/.github/workflows/ci-test-limited.yml index 4701c098a5..219786eaf7 100644 --- a/.github/workflows/ci-test-limited.yml +++ b/.github/workflows/ci-test-limited.yml @@ -122,7 +122,7 @@ jobs: # In case of run-id is 0 download the artifact from the current run - name: Download Docker image artifact - if: inputs.previous-workflow-run-id != 0 + if: inputs.previous-workflow-run-id == 0 uses: actions/download-artifact@v3 with: name: cicontainer