1
0
Fork 0
mirror of https://github.com/SinTan1729/chhoto-url synced 2024-12-25 23:28:37 -06:00

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

This commit is contained in:
Sayantan Santra 2024-03-14 00:47:27 -05:00
parent 71ac19028e
commit 13d613093b
Signed by: SinTan1729
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