Merge pull request #56 from roboflow/dependabot/pip/tox-gte-4.18.1-an… #34
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: 📚 Docs WorkFlow | |
on: | |
push: | |
branches: [main, develop] | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: 🛎️ Checkout | |
uses: actions/checkout@v4 | |
- name: 🐍 Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.x | |
- name: 📦 Install dependencies | |
run: | | |
pip install mkdocs-material "mkdocstrings[python]" | |
- name: 🚀 Deploy Docs | |
run: mkdocs gh-deploy --force |