From 50380cbc100752012bde87063b30e4b51ab43960 Mon Sep 17 00:00:00 2001 From: jonwzheng Date: Wed, 28 Feb 2024 16:42:02 -0500 Subject: [PATCH] add logging messages to help figure out where website build workflow is going wrong --- .github/workflows/docs.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 379a337b8e..422d829d98 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -52,7 +52,10 @@ jobs: run: | git config --global user.name "github-actions" git config --global user.email "github-actions@github.com" + ls -l + pwd cd documentation + ls -l make html - name: Report documentation errors if: ${{ failure() }} @@ -72,4 +75,7 @@ jobs: if: ${{ github.event_name == 'push' && github.repository == 'ReactionMechanismGenerator/RMG-Py' }} run: | touch build/html/.nojekyll + ls -l + pwd + ls -l build/html/ cd build/html; git add -A .; git commit -m "Automated documentation rebuild"; git push --dry-run origin gh-pages