From 7fb4e52ec9bed7452c8b8317879ba1688f7d83fe Mon Sep 17 00:00:00 2001 From: Snowball_233 Date: Fri, 23 Jan 2026 00:40:55 +0800 Subject: [PATCH] Fix pandoc FUSE error by using apt-get instead of AppImage --- .github/workflows/epub.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/epub.yml b/.github/workflows/epub.yml index 57a3a75d..07bece5a 100644 --- a/.github/workflows/epub.yml +++ b/.github/workflows/epub.yml @@ -21,20 +21,15 @@ jobs: with: mdbook-version: "latest" - - name: Install Pandoc - uses: pandoc/actions/setup@v1 - with: - version: "3.1" - - name: Install Tectonic uses: wtfjoke/setup-tectonic@v1 with: github-token: ${{ secrets.GITHUB_TOKEN }} - - name: Install fonts + - name: Install Pandoc and fonts run: | sudo apt-get update - sudo apt-get install -y fonts-noto-cjk fonts-noto-cjk-extra + sudo apt-get install -y pandoc fonts-noto-cjk fonts-noto-cjk-extra - name: Install mdbook-pandoc run: |