build: Change order of pushing the builds, looks nicer lol

This commit is contained in:
SinTan1729 2024-03-14 00:47:27 -05:00
parent 71ac19028e
commit 13d613093b
No known key found for this signature in database
GPG Key ID: EB3E68BFBA25C85F

View File

@ -8,7 +8,7 @@ name="chhoto-url"
docker build -t $name .
for tag in latest $v_patch $v_minor $v_major;
for tag in $v_major $v_minor $v_patch latest
do
docker tag $name sintan1729/$name:$tag
done
@ -17,7 +17,7 @@ echo "Do you want to push these to Docker Hub?"
select yn in "Yes" "No";
do
if [ "$yn"="Yes" ]; then
for tag in latest $v_patch $v_minor $v_major;
for tag in $v_major $v_minor $v_patch latest
do
docker push sintan1729/$name:$tag
done