bump maestro version from 0.2.0rc3
to 0.2.0rc4
#32
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 |