We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83777ba commit 8cca8c1Copy full SHA for 8cca8c1
.github/workflows/github-pages.yml
@@ -8,12 +8,26 @@ jobs:
8
steps:
9
- name: Checkout
10
uses: actions/checkout@v4
11
+
12
+ - name: Install pandoc
13
+ run: |
14
+ sudo apt-get update
15
+ sudo apt-get install -y pandoc
16
17
- name: Build site
18
run: |
19
rm -rf dist
20
mkdir -p dist
- cp ./docs.html ./dist/index.html
21
22
+ pandoc README.md \
23
+ --from=gfm \
24
+ --to=html5 \
25
+ --standalone \
26
+ --metadata title="README" \
27
+ -o dist/index.html
28
29
+ cp ./logo.png ./dist/logo.png
30
+ cp ./docs.html ./dist/docs.html
31
32
- name: Upload Pages artifact
33
uses: actions/upload-pages-artifact@v3
@@ -40,3 +54,4 @@ jobs:
40
54
id: deployment
41
55
uses: actions/deploy-pages@v4
42
56
57
0 commit comments