new: Added a dev tag option

This commit is contained in:
SinTan1729 2024-03-23 16:07:55 -05:00
parent cde3fb4c89
commit 8dbb6e9bd6
No known key found for this signature in database
GPG Key ID: EB3E68BFBA25C85F

View File

@ -1,5 +1,12 @@
#!/bin/env bash
if [ "$1" == "dev" ]; then
name="chhoto-url"
docker build -t $name .
docker tag $name sintan1729/$name:dev
docker push sintan1729/$name:dev
elif [ "$1" == "release" ]; then
v_patch=$(cat actix/Cargo.toml | sed -rn 's/^version = "(.+)"$/\1/p')
v_minor=$(echo $v_patch | sed -rn 's/^(.+\..+)\..+$/\1/p')
v_major=$(echo $v_minor | sed -rn 's/^(.+)\..+$/\1/p')
@ -26,4 +33,5 @@ do
fi
break
done
fi