Skip to content

Commit

Permalink
test: added checkout step
Browse files Browse the repository at this point in the history
  • Loading branch information
huniafatima-arbi committed Nov 6, 2024
1 parent 11fe835 commit a0e32b4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/push-docker-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit a0e32b4

Please sign in to comment.