You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
622 B

3 weeks ago
3 weeks ago
3 weeks ago
3 weeks ago
3 weeks ago
3 weeks ago
3 weeks ago
3 weeks ago
3 weeks ago
3 weeks ago
  1. name: Build and Deploy MkDocs
  2. on:
  3. push:
  4. branches:
  5. - docstest
  6. permissions:
  7. contents: write
  8. jobs:
  9. deploy:
  10. runs-on: ubuntu-latest
  11. steps:
  12. - uses: actions/checkout@v4
  13. - name: Configure Git Credentials
  14. run: |
  15. git config user.name github-actions[bot]
  16. git config user.email 41898282+github-actions[bot]@users.noreply.github.com
  17. - uses: actions/setup-python@v5
  18. with:
  19. python-version: 3.x
  20. - run: pip install -r requirements.txt
  21. working-directory: ./mkdocs
  22. - run: mkdocs gh-deploy --force
  23. working-directory: ./docs