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 56e5ad0 commit 70859cbCopy full SHA for 70859cb
.github/workflows/static.yml
@@ -14,21 +14,25 @@ jobs:
14
steps:
15
- name: Checkout
16
uses: actions/checkout@v4
17
-
+
18
- name: Setup Python
19
uses: actions/setup-python@v5
20
with:
21
python-version: '3.12' # Use the latest available Python version
22
23
+ - name: Install wkhtmltopdf
24
+ run: sudo apt-get update && sudo apt-get install -y wkhtmltopdf
25
26
- name: Install dependencies
27
run: pip install --no-cache-dir -r requirements.txt
28
- - name: Generate PDF from HTML
29
+ - name: Generate MD to HTML
30
run: python compile.py
31
32
- name: Upload artifact
33
uses: actions/upload-pages-artifact@v3
34
35
36
deploy:
37
needs: build
38
environment:
0 commit comments