Skip to content

Commit d1ce6ac

Browse files
committed
Initial Overleaf Import
0 parents  commit d1ce6ac

File tree

4 files changed

+796
-0
lines changed

4 files changed

+796
-0
lines changed

.github/workflows/main.yaml

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
2+
name: Latexdiff
3+
# Controls when the workflow will run
4+
on:
5+
# Triggers the workflow on push or pull request events but only for the main branch
6+
push:
7+
branches: [ main ]
8+
paths: # 这里是用来指定哪个文件更改,才会触发的
9+
- '*.tex'
10+
workflow_dispatch:
11+
12+
jobs:
13+
generate:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v3
17+
- name: generating diff.tex
18+
uses: addnab/docker-run-action@v3
19+
with:
20+
image: 18810919727/latex_diff:v1
21+
options: -v ${{ github.workspace }}:/dir:rw
22+
run: |
23+
latexdiff /dir/cag-template_old.tex /dir/cag-template.tex > /dir/diff.tex
24+
echo "Generating diff.tex successfully"
25+
- name: git add & commit
26+
run: |
27+
# 此处可以键入邮箱及姓名
28+
git config --global user.email "[email protected]"
29+
git config --global user.name "Your Named"
30+
git add diff.tex
31+
git commit -m "update diff"
32+
git push -u origin main

0 commit comments

Comments
 (0)