You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# If you use the `requested_platforms` env var, then parse it.
42
+
if [ -n "${requested_platforms}" ]; then
43
+
# Transform env var into bash array to calculate arrays intersect. That allow us to know the plateform that can work with our image who can be build on current github docker buildx.
44
+
IFS=',' read -r -a requested_platforms <<< "${requested_platforms}"
45
+
IFS=',' read -r -a available_platforms <<< "${{ steps.buildx.outputs.platforms }}"
0 commit comments