Also change font size for line numbers #10
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |