scritp for push all

This commit is contained in:
Djkáťo 2024-05-15 18:00:15 +02:00
parent eca327af9e
commit 820cdb2595

View file

@ -62,8 +62,10 @@ script = '''
[tasks.push-all] [tasks.push-all]
workspace = false workspace = false
script = ''' script = '''
for i in ${ALL_APPS[*]}; do ALL_IMAGES=$(docker images -qa --filter "label=src=saleor-dockerize-all-apps" --format "{{.Repository}}:{{.Tag}}")
docker push ${CONTAINER_PUSH_URL}/saleor-app-$i for i in ${ALL_IMAGES[*]}; do
echo "pushing $i.."
docker push $i
done done
''' '''