Revert "Merge branch 'parallel-ci'"

This reverts commit 6f4c704321.
This commit is contained in:
xavion-lux 2023-05-19 00:43:49 +02:00
parent 6f4c704321
commit af1dfcf829
No known key found for this signature in database
GPG key ID: 2D1F99DB75512031

View file

@ -63,13 +63,10 @@ release-docker:
fi
- |
for image in $IMAGE_NAMES; do
docker buildx build --provenance false --platform $PLATFORM -t $image . --push
docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 -t $image . --push
done
- |
echo "Container image pushed. You can pull it with";
for image in $IMAGE_NAMES; do
echo "docker pull $image"
done
parallel:
matrix:
- PLATFORM: [linux/amd64, linux/arm64, linux/arm/v7]