File tree Expand file tree Collapse file tree 1 file changed +9
-7
lines changed
Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -64,8 +64,8 @@ if [ -n "${INPUT_ENV_FILE}" ];then
6464 set -a
6565 # shellcheck disable=SC1090
6666 source " ${INPUT_ENV_FILE} "
67- fi
6867echo " ::endgroup::"
68+ fi
6969
7070if [[ -n " ${INPUT_REGISTRY_USER} " && -n " ${INPUT_REGISTRY_PASS} " ]]; then
7171 echo -e " ::group::Logging in to Registry: \u001b[36;1m${INPUT_REGISTRY_HOST:- Docker Hub} "
@@ -75,18 +75,20 @@ if [[ -n "${INPUT_REGISTRY_USER}" && -n "${INPUT_REGISTRY_PASS}" ]];then
7575 echo " ::endgroup::"
7676fi
7777
78- echo -e " ::group::Deploying Stack: \u001b[36;1m${INPUT_NAME} "
78+ # echo -e "::group::Deploying Stack: \u001b[36;1m${INPUT_NAME}"
79+ echo -e " Deploying Stack: \u001b[36;1m${INPUT_NAME} "
7980EXTRA_ARGS=()
8081if [[ -n " ${INPUT_REGISTRY_AUTH} " ]]; then
8182 echo -e " Adding extra arg: \u001b[36;1m--with-registry-auth"
8283 EXTRA_ARGS+=(" --with-registry-auth" )
8384fi
8485# shellcheck disable=SC2034
85- RESULTS=$( docker stack deploy -c " ${INPUT_FILE} " " ${INPUT_NAME} " " ${EXTRA_ARGS[@]} " | tee /dev/stdout )
86- echo " ::endgroup::"
86+ RESULTS=$( docker stack deploy -c " ${INPUT_FILE} " " ${INPUT_NAME} " " ${EXTRA_ARGS[@]} " )
87+ # echo "::endgroup::"
8788
8889if [[ " ${INPUT_SUMMARY} " == " true" ]]; then
89- echo " ::group::Writing Job Summary"
90- source /src/summary.sh | tee /dev/stdout >> " ${GITHUB_STEP_SUMMARY} "
91- echo " ::endgroup::"
90+ echo " Writing Job Summary"
91+ # echo "::group::Writing Job Summary"
92+ source /src/summary.sh >> " ${GITHUB_STEP_SUMMARY} "
93+ # echo "::endgroup::"
9294fi
You can’t perform that action at this time.
0 commit comments