From 3ea7253885aca84bfd2eb5f5dad0de01b9d5abfd Mon Sep 17 00:00:00 2001 From: martincaddick <73564857+martincaddick@users.noreply.github.com> Date: Tue, 5 Dec 2023 14:32:20 +1100 Subject: [PATCH] Update repos.md --- repos.md | 30 +++++++++++++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) diff --git a/repos.md b/repos.md index 7a7fb0a..687db55 100644 --- a/repos.md +++ b/repos.md @@ -60,4 +60,32 @@ graph TB L -->|Success| M M -->|Success| N[Job Complete] -``` \ No newline at end of file +``` +```mermaid +graph TB + A[ci] --> B[on] + B --> C[push] + C --> D[branches: develop] + B --> E[workflow_dispatch] + A --> F[permissions] + F --> G[contents: write] + A --> H[jobs] + H --> I[deploy] + I --> J[runs-on: ubuntu-latest] + J --> K[steps] + K --> L[Checkout the code] + L --> M[Python setup] + M --> N[Cache] + N --> O[Install mkdocs-material and deploy documentation] + O --> P[Get the gh-pages branch] + P --> Q[Deploy the website] + H --> R[convert_via_pandoc] + R --> S[runs-on: ubuntu-latest] + S --> T[container] + T --> U[steps] + U --> V[Checkout the code] + V --> W[Prepare output folder] + W --> X[Prepare output directories] + X --> Y[Convert md to docx] + Y --> Z[Upload artifact] +```