mirror of
https://github.com/minoplhy/chhoto-url.git
synced 2024-11-22 17:26:45 +00:00
new: Added a convenience script for publishing
This commit is contained in:
parent
a5574683a6
commit
9fdb634d71
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 New Issue
Block a user