Add verbose log in GitHub Actions CI for make -f Makefile.doc (#4681)

Our GitHub Actions CI is having some issues with `make -f Makefile.doc`
as the related changes that should have triggered the build didn't
work for the past 3 months (since march).

This PR adds verbose to GitHub Actions CI to see if we can get more information.

Note this PR just add `set -x` to show detailed step. Will not impact anything else.

Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
This commit is contained in:
Yong Tang
2021-06-08 09:26:38 -07:00
committed by GitHub
parent 491e30a292
commit c996a26364

View File

@@ -17,7 +17,7 @@ jobs:
-
name: Update Docs
run: |
./.github/fixup_file_mtime.sh
bash -x -e ./.github/fixup_file_mtime.sh
make -f Makefile.doc
-
name: Set up Git
@@ -30,6 +30,7 @@ jobs:
-
name: Commit and push changes
run: |
set -x -e
git add .
if output=$(git status --porcelain) && [ ! -z "$output" ]; then
git commit -s -m 'auto make -f Makefile.doc'