From 0a00062127a0ac2a88b85f75cbb0ea56d4ed27a8 Mon Sep 17 00:00:00 2001 From: Dongwoon Son Date: Sun, 30 Dec 2018 23:07:32 +0900 Subject: [PATCH] Add -f (--no-history) flag to gh-pages --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 7e8e57b..8f1a60e 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -7,7 +7,7 @@ if [ ! -n "$GITHUB_TOKEN" ]; then echo "You need to supply GITHUB_TOKEN" exit 1 fi -gh-pages -d $PUBLIC_PATH -b gh-pages -u "github-actions-bot " +gh-pages -d $PUBLIC_PATH -b gh-pages -u "github-actions-bot " -f retval=$? if [ $retval -ne 0 ]; then echo "gh-pages failed: $retval"