From 04fd4d0986e6b7f2f0f9648236a2794b8d13cf3b Mon Sep 17 00:00:00 2001 From: Sho KUSANO Date: Wed, 15 Jan 2025 19:14:57 +0900 Subject: [PATCH] Fix comment out --- bin/ci/deploy | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/bin/ci/deploy b/bin/ci/deploy index 9e5b29b..7fa0fef 100755 --- a/bin/ci/deploy +++ b/bin/ci/deploy @@ -5,12 +5,12 @@ git config user.email "41898282+github-actions[bot]@users.noreply.github.com" CI_RELEASE_VERSION=`date +"v%Y-%m-%d"` -# if [ `git status -s` -eq '' ]; then -# echo "No changes to commit" -# exit 0 -# fi +if [ `git status -s` -eq '' ]; then + echo "No changes to commit" + exit 0 +fi -# git commit -a -m "Update: ${CI_RELEASE_VERSION}" -# git push --all +git commit -a -m "Update: ${CI_RELEASE_VERSION}" +git push --all bundle exec rake release