-
Notifications
You must be signed in to change notification settings - Fork 2
48 lines (43 loc) · 1.14 KB
/
publ.yml
File metadata and controls
48 lines (43 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: Publish Articles
on:
workflow_dispatch:
workflow_call:
push:
paths:
- 'src/**'
- '**.py'
- '**.md'
- '**.c'
- '**.ltx'
- 'publ.yml'
jobs:
build_latex:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Publish
uses: xu-cheng/texlive-action@v2
with:
scheme: small
run: |
tlmgr install \
collection-luatex \
luatexja \
evangelion-jfm \
xurl \
silence
apk add gcc || true
mkdir ./public/batch >/dev/null 2>&1
python3 make.py post
python3 make.py batch
- name: Commit and Push Changes
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git pull origin main --rebase
git add .
git commit -m "chore: automated publish" || echo "no changes to commit"
git push origin HEAD:main