openai/chatkit-python
Publicmirrored from https://github.com/openai/chatkit-pythonAvailable
.github/workflows/docs.yml
29lines · modeblame
f688d870victor-openai8 months ago | 1 | name: Deploy Docs |
| 2 | | |
| 3 | on: | |
| 4 | push: | |
| 5 | branches: | |
| 6 | - main | |
| 7 | workflow_dispatch: | |
| 8 | | |
| 9 | permissions: | |
| 10 | contents: write | |
| 11 | | |
| 12 | jobs: | |
| 13 | deploy: | |
| 14 | name: Deploy | |
| 15 | runs-on: ubuntu-latest | |
| 16 | steps: | |
| 17 | - name: Checkout | |
4089dc06Salman Muin Kayser Chishti6 months ago | 18 | uses: actions/checkout@v6 |
f688d870victor-openai8 months ago | 19 | |
| 20 | - name: Setup uv | |
| 21 | uses: astral-sh/setup-uv@v5 | |
| 22 | with: | |
| 23 | enable-cache: true | |
| 24 | | |
| 25 | - name: Install | |
| 26 | run: make sync | |
| 27 | | |
| 28 | - name: Deploy | |
| 29 | run: make deploy-docs |