Skip to content

Commit

Permalink
multiarch_image_check.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
YashasviDevtron authored Jun 5, 2024
1 parent 992599a commit 966d815
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/multiarch_new (1).yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,14 @@ jobs:
get_image_arch "$image"
fi
done < <(grep -Eo '"image":\s*"[^"]*"' values.json)
while read -r line; do
cicd_image=$(echo "$line" | cut -d'"' -f4)
if [ -n "$cicd_image" ]; then
echo "$cicd_image"
get_image_arch "$cicd_image"
fi
done < <(grep -Eo '"cicdImage":\s*"[^"]*"' values.json)
if [ ${#non_multiarch_images[@]} -ne 0 ]; then
Expand Down

0 comments on commit 966d815

Please sign in to comment.