Update creating-a-new-boundary-pr.md #297
This file contains hidden or 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
| name: Build and Deploy Docs | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| build-deploy: | |
| name: Build and deploy docs | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout ๐๏ธ | |
| uses: actions/checkout@v2 | |
| - name: Set up Python 3 โ๏ธ ๐ | |
| uses: actions/setup-python@v2 | |
| - name: Cache dependencies ๐พ | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.cache/pip | |
| key: ${{ runner.os }}-pip-${{ hashFiles('docs/requirements.txt') }} | |
| restore-keys: | | |
| ${{ runner.os }}-pip- | |
| ${{ runner.os }}- | |
| - name: Install dependencies ๐ง | |
| working-directory: docs | |
| run: make install | |
| - name: Build and deploy to GitHub Pages ๐๏ธ ๐ | |
| working-directory: docs | |
| run: make deploy |