feat: K3s cluster recovery tooling and documentation #277
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 Docs Codex Generated Workflow | |
| on: | |
| push: | |
| branches: | |
| - master | |
| paths: | |
| - 'docs/**' | |
| jobs: | |
| build-and-deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout source | |
| uses: actions/checkout@v4 | |
| - name: Setup Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.x' | |
| - name: Deploy to GitHub Pages | |
| uses: JacksonMaxfield/github-pages-deploy-action-python@master | |
| env: | |
| ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }} | |
| BASE_BRANCH: master # The branch the action should deploy from. | |
| BRANCH: gh-pages # The branch the action should deploy to. | |
| FOLDER: docs/build/html # The folder generated by Sphinx | |
| BUILD_SCRIPT: pip install -r docs/requirements.txt && make -C docs html && touch docs/build/html/.nojekyll | |