chore: Bump version to 0.7.6 #58
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 | |
| on: | |
| push: | |
| branches: | |
| - stable # Deploy from stable branch (updated on releases only) | |
| paths: | |
| - 'docs/**' | |
| - 'mkdocs.yml' | |
| - '.github/workflows/docs.yml' | |
| workflow_dispatch: | |
| permissions: | |
| contents: write | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.11' | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v4 | |
| - name: Install dependencies | |
| run: | | |
| uv pip install --system mkdocs-material mkdocs-material-extensions | |
| - name: Sync project dependencies | |
| run: | | |
| uv sync | |
| - name: Generate screenshots | |
| run: | | |
| uv run python scripts/generate_screenshots.py | |
| env: | |
| # Use headless mode for CI | |
| TERM: xterm-256color | |
| - name: Build and deploy | |
| run: | | |
| mkdocs gh-deploy --force | |
| - name: Summary | |
| run: | | |
| echo "📚 Documentation deployed to GitHub Pages from stable branch" >> $GITHUB_STEP_SUMMARY | |
| echo "🎬 Screenshots generated and included in build" >> $GITHUB_STEP_SUMMARY | |
| echo "🌐 Site will be available at: https://moneyflow.dev" >> $GITHUB_STEP_SUMMARY | |
| echo "⚠️ Only released features (from stable branch) are published" >> $GITHUB_STEP_SUMMARY |