1
0
Fork 0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-03-20 23:22:56 +03:00
rss-bridge/hooks/push

10 lines
193 B
Text
Raw Normal View History

#!/bin/bash
# Custom build script to push images for all supported architectures.
for arch in amd64 arm32v7 arm64v8
do
echo "Pushing $IMAGE_NAME-$arch"
docker push $IMAGE_NAME-$arch
done