From 6e89ecd13ad83e2b062a4b82a8d5f30a6d425c0b Mon Sep 17 00:00:00 2001 From: "jeremy@jermolene.com" Date: Fri, 1 Apr 2022 11:01:47 +0100 Subject: [PATCH] Revert "CI: Temporarily enable output for git push commands" This reverts commit 55eb37222a4b720ef50bcccd7fd2cca1a89b73a4. --- bin/ci-push.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/ci-push.sh b/bin/ci-push.sh index 2238c6b73..dff297c80 100755 --- a/bin/ci-push.sh +++ b/bin/ci-push.sh @@ -10,6 +10,6 @@ git config --global user.email "actions@github.com" git config --global user.name "GitHub Actions" git add -A . git commit --message "GitHub build: $GITHUB_RUN_NUMBER of $TW5_BUILD_BRANCH ($(date +'%F %T %Z'))" -git remote add deploy "https://$GH_TOKEN@github.com/Jermolene/jermolene.github.io.git" -git push deploy master +git remote add deploy "https://$GH_TOKEN@github.com/Jermolene/jermolene.github.io.git" &>/dev/null +git push deploy master &>/dev/null cd ..