1
0
Fork 0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-03-18 06:01:10 +03:00
rss-bridge/hooks/push
2021-05-13 22:57:10 +05:00

9 lines
193 B
Bash

#!/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