Skip to content

Commit 72e6425

Browse files
committed
[Breaking Change] (config) Adjust the log message.
1 parent 47941da commit 72e6425

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

scripts/ci/deployment_new_version_workflow.sh

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,21 @@ debug_mode=$1
44

55
final_release_type=$RELEASE_TYPE
66
if [ "$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."
88
else
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
2222
fi
2323

24-
echo "Done!"
24+
echo "🎊🥂 Done!"

0 commit comments

Comments
 (0)