File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -4,21 +4,21 @@ debug_mode=$1
44
55final_release_type=$RELEASE_TYPE
66if [ " $final_release_type " == " Pre" ]; then
7- echo " It detects Pre-Release flag."
7+ echo " 💤 It detects Pre-Release flag. So it does NOT do anything in deployment process ."
88else
9- echo " It detects Official-Release flag."
9+ echo " 📬 It detects Official-Release flag."
1010 if [ " $debug_mode " == true ]; then
1111 echo " 🔍👀[DEBUG MODE] Create new git branch for the new version $final_release_type ."
1212 else
13- echo " Add git remote reference."
1413 git remote add github-action_workflow-template https://github.com/Chisanan232/GitHub-Action-Template-Python.git
15- echo " Check all git remote reference."
14+ echo " 🔗📄 Add git remote reference."
1615 git remote -v
17- echo " Create a new git branch as version ."
16+ echo " 🔍 Check all git remote reference ."
1817 git checkout -b " v$final_release_type "
19- echo " Push the source code as a branch with one specific version to the GitHub ."
18+ echo " ⛓ Create a new git branch as version."
2019 git push -u github-action_workflow-template " v$final_release_type "
20+ echo " 🍻🎉 Push the source code as a branch with one specific version to the GitHub."
2121 fi
2222fi
2323
24- echo " Done!"
24+ echo " 🎊🥂 Done!"
You can’t perform that action at this time.
0 commit comments