From 55eb37222a4b720ef50bcccd7fd2cca1a89b73a4 Mon Sep 17 00:00:00 2001 From: "jeremy@jermolene.com" Date: Fri, 1 Apr 2022 10:37:06 +0100 Subject: [PATCH] CI: Temporarily enable output for git push commands The call to ./bin/ci-push.sh is failing for both master and tiddlywiki-com: https://github.com/Jermolene/TiddlyWiki5/actions/runs/2071743915 --- 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 dff297c80..2238c6b73 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" &>/dev/null -git push deploy master &>/dev/null +git remote add deploy "https://$GH_TOKEN@github.com/Jermolene/jermolene.github.io.git" +git push deploy master cd ..