Skip to content

Commit bf2e872

Browse files
committed
added hot-update action
1 parent 6abdbc8 commit bf2e872

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/hot-update.yaml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Hot Update
2+
on:
3+
push:
4+
branches:
5+
- master
6+
jobs:
7+
hot-update:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v6
11+
- name: Update font dependencies
12+
run: |
13+
git submodule init
14+
git submodule update
15+
cd fonts
16+
git submodule init
17+
git submodule update
18+
- name: Compile main.pdf
19+
run: make main.pdf
20+
- name: Release
21+
run: gh release upload hot-update main.pdf

0 commit comments

Comments
 (0)