Skip to content

Commit

Permalink
Update repos.md
Browse files Browse the repository at this point in the history
  • Loading branch information
martincaddick authored Dec 5, 2023
1 parent 0645417 commit 3ea7253
Showing 1 changed file with 29 additions and 1 deletion.
30 changes: 29 additions & 1 deletion repos.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,32 @@ graph TB
L -->|Success| M
M -->|Success| N[Job Complete]
```
```
```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]
```

0 comments on commit 3ea7253

Please sign in to comment.