Skip to content

Commit

Permalink
fix(.github): not push manifest if eithor amd64 or arm64 image is…
Browse files Browse the repository at this point in the history
… missing (#5525)

not push manifest if eithor amd64 or arm64 is missing

Signed-off-by: Yutaka Kondo <[email protected]>
  • Loading branch information
youtalk authored Dec 3, 2024
1 parent d5a18ba commit 9185662
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/combine-multi-arch-images/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,14 +82,14 @@ runs:
amd64_image="${{ steps.set-image-name.outputs.image-name }}:$amd64_tag"
else
echo "No amd64 tag found for '$base_tag'."
amd64_image=""
continue
fi
if [ "$arm64_tag" != "" ]; then
arm64_image="${{ steps.set-image-name.outputs.image-name }}:$arm64_tag"
else
echo "No arm64 tag found for '$base_tag'."
arm64_image=""
continue
fi
echo "amd64_image: $amd64_image"
Expand Down

0 comments on commit 9185662

Please sign in to comment.