Skip to content

Commit 7856def

Browse files
committed
fix(deploy-docs.yml): fix document deployment
1 parent 224fff5 commit 7856def

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/deploy-docs.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@ name: Build and Deploy Documentation
22

33
on: [push, pull_request]
44

5+
56
jobs:
67
Build:
7-
runs-on: ubuntu-latest
8+
runs-on: ubuntu-22.04
89

910
steps:
1011
- name: Checkout code
@@ -13,13 +14,13 @@ jobs:
1314
- name: Install Dependencies Ubuntu
1415
run: |
1516
sudo apt-get update
16-
sudo apt install -y python-dev python build-essential graphviz
17-
sudo pip install ford
17+
sudo apt install -y python3-dev python3 build-essential graphviz
18+
sudo pip install ford markdown==3.3.4
1819
1920
- name: Build Developer Documenation
2021
run: |
2122
cd doc
22-
ford ford-documentation.md
23+
ford ford.md
2324
2425
- name: Upload Documentation
2526
uses: actions/upload-artifact@v2
File renamed without changes.

0 commit comments

Comments
 (0)