-
Notifications
You must be signed in to change notification settings - Fork 33
61 lines (52 loc) · 2.04 KB
/
test-build-typst.yml
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
49
50
51
52
53
54
55
56
57
58
59
60
61
name: Build Typst document
on:
push:
pull_request:
types: [opened, reopened]
jobs:
build:
runs-on: ubuntu-latest
env:
LANG: C.UTF-8
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup node.js
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'npm'
- name: Pre-build operations
run: |
sudo apt install curl git unzip imagemagick libwebp-dev librsvg2-dev fonts-noto-cjk fonts-noto-cjk-extra
curl -OL https://github.com/typst/typst/releases/download/v0.8.0/typst-x86_64-unknown-linux-musl.tar.xz
curl -OL https://github.com/megakite/texmath/releases/download/v0.12.8.3-20230929/texmath-arg
xz -dc typst-x86_64-unknown-linux-musl.tar.xz | tar -x
sudo mv ./typst-x86_64-unknown-linux-musl/typst /bin/
chmod +x texmath-arg
sudo mv texmath-arg /bin/
curl -OL https://github.com/lxgw/LxgwWenKai/releases/download/v1.300/lxgw-wenkai-v1.300.tar.gz
curl -OL https://github.com/adobe-fonts/source-code-pro/releases/download/2.042R-u%2F1.062R-i%2F1.026R-vf/OTF-source-code-pro-2.042R-u_1.062R-i.zip
gzip -dc lxgw-wenkai-v1.300.tar.gz | tar -x
sudo mv lxgw-wenkai-v1.300 /usr/share/fonts/
unzip -q -d source-code-pro OTF-source-code-pro-2.042R-u_1.062R-i.zip
sudo mv source-code-pro/OTF /usr/share/fonts/source-code-pro
fc-cache
git clone https://github.com/OI-wiki/OI-wiki.git
cd remark-typst
npm install
cd ..
cd oi-wiki-export-typst
npm install
- name: Build Typst document
run: |
cd oi-wiki-export-typst
node index.js ../OI-wiki
typst -v compile oi-wiki-export.typ
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: OI-wiki.pdf
path: ./oi-wiki-export-typst/oi-wiki-export.pdf