Fix Issue #69 - Correct Typo in About Section #26
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .github/workflows/preview.yml | |
name: Deploy PR previews | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- closed | |
concurrency: preview-${{ github.ref }} | |
jobs: | |
deploy-preview: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set up Python 3.7 | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.7 | |
- name: Install dependencies | |
run: | | |
pip install jupyter-book | |
pip install sphinx-tags | |
- name: Build the book | |
run: | | |
rm -rf DISCOVER/_tags/* | |
jupyter-book build DISCOVER | |
- name: Deploy PR Preview | |
uses: rossjrw/[email protected] | |
with: | |
source-dir: ./DISCOVER/_build/html/ |