Merge pull request #54 from FinTechTonic/quant #4
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 to Mintlify | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - 'docs/**' | |
| - '.github/workflows/mintlify-deploy.yml' | |
| workflow_dispatch: | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Deploy to Mintlify | |
| uses: mintlify/action@v1 | |
| with: | |
| mintlify-path: ./docs | |
| # Mintlify will automatically detect and deploy changes | |
| # This workflow is optional as Mintlify GitHub App can handle deployments automatically |