Skip to content

Commit d4c20b7

Browse files
committed
feat: refine ga
1 parent 03920dd commit d4c20b7

File tree

1 file changed

+16
-18
lines changed

1 file changed

+16
-18
lines changed

.github/workflows/publ.yml

Lines changed: 16 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -16,27 +16,25 @@ jobs:
1616
build_latex:
1717
runs-on: ubuntu-latest
1818

19-
continue-on-error: true
20-
2119
steps:
2220
- name: Checkout Repository
2321
uses: actions/checkout@v4
2422

25-
- name: Publish
26-
uses: xu-cheng/texlive-action@v2
27-
with:
28-
scheme: small
29-
run: |
30-
tlmgr install \
31-
collection-luatex \
32-
luatexja \
33-
evangelion-jfm \
34-
xurl \
35-
silence
36-
apk add gcc
37-
mkdir ./public/batch >/dev/null 2>&1
38-
python3 make.py post
39-
python3 make.py batch
23+
- name: Install TeXLive
24+
run: |
25+
apt-get texlive-luatex texlive-lang-japanese texlive-latex-recommended
26+
27+
- name: Install C Compiler and Library
28+
run: |
29+
cc -v
30+
31+
- name: Make Post
32+
run: python3 make.py post
33+
34+
- name: Make Batch
35+
run: |
36+
mkdir ./public/batch >/dev/null 2>&1
37+
python3 make.py batch
4038
4139
- name: Commit and Push Changes
4240
env:
@@ -47,4 +45,4 @@ jobs:
4745
git pull origin main --rebase
4846
git add .
4947
git commit -m "chore: automated publish" || echo "no changes to commit"
50-
git push origin HEAD:main
48+
git push origin HEAD:main

0 commit comments

Comments
 (0)