Increased forced issue fetch timeout of Update All to 30 days #664
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: | |
| - development | |
| jobs: | |
| deploy: | |
| name: Deploy docs | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| name: Setup checkout | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-python@v4 | |
| name: Setup python 3.8 | |
| with: | |
| python-version: 3.8 | |
| cache: 'pip' | |
| - run: pip install -r project_management/docs-requirements.txt | |
| name: Install dependencies | |
| - run: mkdocs gh-deploy --force -f project_management/mkdocs.yml | |
| name: Build docs |