From a0e32b43ee897bdba17e95214913f80f595a8445 Mon Sep 17 00:00:00 2001 From: Hunia Fatima Date: Wed, 6 Nov 2024 22:50:50 +0500 Subject: [PATCH] test: added checkout step --- .github/workflows/push-docker-images.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/push-docker-images.yml b/.github/workflows/push-docker-images.yml index 82d3b6e..c8a266f 100644 --- a/.github/workflows/push-docker-images.yml +++ b/.github/workflows/push-docker-images.yml @@ -37,12 +37,12 @@ jobs: image_to_build="${{ github.event.inputs.image_to_build }}" if [[ -n "$image_to_build" ]]; then images=$(jq -c --arg name "$image_to_build" '[.[] | select(.name == $name)]' images-data.json) - echo "${{images}}" - echo "images_to_build=${{images}}" >> ${{GITHUB_OUTPUT}} + echo "$images" + echo "images_to_build=$images" >> $GITHUB_OUTPUT else images=$(jq -c '.' images-data.json) - echo "${{images}}" - echo "images_to_build=${{images}}" >> ${{GITHUB_OUTPUT}} + echo "$images" + echo "images_to_build=$images" >> $GITHUB_OUTPUT fi push: