mirror of
https://github.com/SinTan1729/chhoto-url
synced 2024-12-26 07:38:36 -06:00
new: Added a convenience script for publishing
This commit is contained in:
parent
a5574683a6
commit
9fdb634d71
1 changed files with 29 additions and 0 deletions
29
docker_push_script.sh
Executable file
29
docker_push_script.sh
Executable file
|
@ -0,0 +1,29 @@
|
||||||
|
#!/bin/env bash
|
||||||
|
|
||||||
|
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')
|
||||||
|
|
||||||
|
name="chhoto-url"
|
||||||
|
|
||||||
|
docker build -t $name .
|
||||||
|
|
||||||
|
for tag in latest $v_patch $v_minor $v_major;
|
||||||
|
do
|
||||||
|
docker tag $name sintan1729/$name:$tag
|
||||||
|
done
|
||||||
|
|
||||||
|
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;
|
||||||
|
do
|
||||||
|
docker push sintan1729/$name:$tag
|
||||||
|
done
|
||||||
|
else
|
||||||
|
echo "Okay! Not pushing."
|
||||||
|
fi
|
||||||
|
break
|
||||||
|
done
|
||||||
|
|
Loading…
Reference in a new issue