fix: [IDP-1296] add site url to local mkdocs #8
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
name: Build Doc pages | |
on: | |
push: | |
branches: | |
- main | |
- IDP-1296-publish-scenarios-report | |
permissions: | |
contents: write | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.x | |
- run: python3 --version | |
- run: pip install -r requirements.txt | |
- run: python3 scenario_parser.py | |
- run: pip install mkdocs-material | |
- run: mkdocs gh-deploy --force | |
# - run: mkdocs build --config-file ./mkdocs_local.yaml # Use this to run locally |