mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-03-07 08:35:57 +03:00
10 lines
193 B
Text
10 lines
193 B
Text
|
#!/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
|