Skip to content

Commit

Permalink
Merge pull request #543 from mamba-org/debian-ppc64le
Browse files Browse the repository at this point in the history
ci: no ppc64le for debian 11
  • Loading branch information
wholtz authored Oct 8, 2024
2 parents 45bfd4e + 6681de1 commit 047ed37
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/push_latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,11 @@ jobs:
else
echo 'distro_id=debian' >> $GITHUB_OUTPUT
echo "tag=${base_name}" >> $GITHUB_OUTPUT
echo 'platforms=linux/amd64,linux/arm64,linux/ppc64le' >> $GITHUB_OUTPUT
if [ "${base_tag}" = '11' ] || [ "${base_tag}" = '11-slim' ]; then
echo 'platforms=linux/amd64,linux/arm64' >> $GITHUB_OUTPUT
else
echo 'platforms=linux/amd64,linux/arm64,linux/ppc64le' >> $GITHUB_OUTPUT
fi
fi
echo "is_default=$([ "$BASE_IMAGE" = "$DEFAULT_BASE_IMAGE" ] \
&& echo true || echo false)" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit 047ed37

Please sign in to comment.