docs: Add Testbed Setup instructions #2
Workflow file for this run
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: Deploy documentation website | |
| on: | |
| push: | |
| #branches: [ main ] | |
| paths: | |
| - 'docs/**' | |
| - 'mkdocs.yml' | |
| - 'requirements.txt' | |
| permissions: | |
| contents: write # Needed for GitHub Pages deployment | |
| jobs: | |
| deploy: | |
| runs-on: [base-dind-2204-amd64] | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: | | |
| pip3 install -r requirements.txt | |
| echo "PATH=$PATH:$HOME/.local/bin" >> "$GITHUB_ENV" | |
| - name: Build and deploy MkDocs site | |
| run: | | |
| mkdocs gh-deploy --force | |