Skip to content

Commit

Permalink
not push manifest if eithor amd64 or arm64 is missing
Browse files Browse the repository at this point in the history
Signed-off-by: Yutaka Kondo <[email protected]>
  • Loading branch information
youtalk committed Dec 3, 2024
1 parent d8367f9 commit 07616e0
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 07616e0

Please sign in to comment.