build: Fix the docker_push_script

This commit is contained in:
SinTan1729 2024-03-25 01:26:13 -05:00
parent 629e66a57c
commit 6d3d220cff
No known key found for this signature in database
GPG Key ID: EB3E68BFBA25C85F

View File

@ -8,8 +8,9 @@ elif [ "$1" == "release" ]; then
v_minor=$(echo $v_patch | sed -rn 's/^(.+\..+)\..+$/\1/p')
v_major=$(echo $v_minor | sed -rn 's/^(.+)\..+$/\1/p')
make build
name="chhoto-url"
docker buildx build --push --tag sintan1729/$name:$v_major --tag sintan1729/$v_minor: \
--tag sintan1729/$name:$v_patch --tag sintan1729/$name:latest --platform linux/amd64,linux/arm64
--tag sintan1729/$name:$v_patch --tag sintan1729/$name:latest --platform linux/amd64,linux/arm64,linux/arm/v7 -f Dockerfile.multiarch .
fi