commit 358e3d208e40b54cd5d72705f7bd6642b3963759 parent 0691d23286078551b8678395b4d16cb1702acc65 Author: MTRNord <mtrnord1@gmail.com> Date: Fri, 8 Nov 2024 23:52:59 +0100 Fix ci Diffstat:
| M | .github/workflows/build.yaml | | | 13 | +++++-------- |
1 file changed, 5 insertions(+), 8 deletions(-)
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml @@ -39,18 +39,15 @@ jobs: - name: Compile arara run: ./compile.sh - name: Install texlive - run: sudo apt install -y texlive-full + run: sudo apt install -y libreoffice pandoc texlive-full - name: Compile LaTeX document run: ./build.sh - - uses: docker://pandoc/core:3.5 - with: - args: "-s build/root.tex -o build/root.md" - - name: Run make4ht + - name: Build markdown working-directory: build - run: make4ht -s -u -x --format odt --loglevel info -e build.mk4 root.tex || exit 0 - - name: Install libreoffice + run: "pandoc -s root.tex -o root.md" + - name: Run make4ht working-directory: build - run: sudo apt install -y libreoffice + run: make4ht -s -u -x --format odt --loglevel info -e ../build.mk4 root.tex || exit 0 - name: Convert to docx working-directory: build run: soffice --convert-to docx root.odt