From 54fed5e7b598bdb42700cbf27522861e07148b51 Mon Sep 17 00:00:00 2001 From: Guillaume Emorine Date: Mon, 9 Sep 2024 17:55:37 +0200 Subject: [PATCH] =?UTF-8?q?=09modifi=C3=A9=C2=A0:=20=20=20=20=20=20=20=20?= =?UTF-8?q?=20automate.sh?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- automate.sh | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/automate.sh b/automate.sh index c833761..c1b3ac2 100644 --- a/automate.sh +++ b/automate.sh @@ -27,9 +27,12 @@ if [ $branch == 1 ] ; then echo "Commit en cours..." sleep 1 git commit + echo "Entrez la version du tag:" + read tag + git tag $tag echo "Push des fichiers au Gitea, branche main..." sleep 1 - git push -q origin main + git push -q origin main --tag fi elif [ $branch == 2 ] ; then @@ -45,9 +48,12 @@ elif [ $branch == 2 ] ; then echo "Commit en cours..." sleep 1 git commit + echo "Entrez la version du tag:" + read tag + git tag $tag echo "Push des fichiers au Gitea, branche test..." sleep 1 - git push -q origin test + git push -q origin test --tag fi else