There was an error while loading. Please reload this page.
1 parent 8881f22 commit e04ecfaCopy full SHA for e04ecfa
2 files changed
.github/workflows/build.yml
@@ -11,8 +11,13 @@ jobs:
11
uses: actions/checkout@v4
12
- name: Prepare system
13
run: |
14
- apt-get update && apt-get install -y poppler-utils
+ apt-get update && apt-get install -y python3-venv poppler-utils
15
+ python3 -m venv .venv && . .venv/bin/activate
16
+ echo PATH=$PATH >> $GITHUB_ENV
17
pip install pandoc-fignos
18
+ # Workaround for https://github.com/tomduck/pandoc-xnos/pull/29
19
+ apt-get install -y git
20
+ pip install --force-reinstall git+https://github.com/nandokawka/pandoc-xnos@284474574f51888be75603e7d1df667a0890504d#egg=pandoc-xnos
21
- name: Build
22
23
cd fsi-workflow && make
.gitignore
@@ -1,2 +1,3 @@
1
.vscode/
2
+.venv/
3
*.pdf
0 commit comments