From 4bf7e7b857b21c4195f1c69c8a333f2bda131481 Mon Sep 17 00:00:00 2001 From: RadioNoiseE Date: Tue, 10 Dec 2024 10:53:47 +0800 Subject: [PATCH] fix: run in docker hope it works --- .github/workflows/publ.yml | 20 +++++--------------- 1 file changed, 5 insertions(+), 15 deletions(-) diff --git a/.github/workflows/publ.yml b/.github/workflows/publ.yml index 440fd37..52ce781 100644 --- a/.github/workflows/publ.yml +++ b/.github/workflows/publ.yml @@ -13,29 +13,19 @@ jobs: - name: Checkout Repository uses: actions/checkout@v4 - - name: Setup Clang - run: | - sudo apt-get update - sudo apt-get install -y clang - - - name: Setup TeX Environment + - name: Publish uses: xu-cheng/texlive-action@v2 with: - scheme: small + scheme: basic run: | tlmgr install \ collection-luatex \ evangelion-jfm \ xurl \ luatexja - - - name: Publish - run: | - alias cc=clang - source /etc/profile - echo $PATH - python3 make.py post - python3 make.py batch + apk add clang + python3 make.py post + python3 make.py batch - name: Commit and Push Changes run: |