attempt to build the book using the content/ folder
raise an error if the book fails to build.
We could consider adding an additional step to the workflow (in a new pull request) to push the new content to the gh-pages branch. This looks something like the command below:
# Push the book's HTML to github-pages
- name: GitHub Pages action
uses: peaceiris/actions-gh-pages@v3.6.1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./_build/html
This pull request helps to address https://github.com/MIT-LCP/mimic_wfdb_tutorials/issues/10. The workflow should:
content/
folderWe could consider adding an additional step to the workflow (in a new pull request) to push the new content to the
gh-pages
branch. This looks something like the command below: