Skip to content

Refactor table tag

Refactor table tag #20

Workflow file for this run

name: Build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Configure and build
uses: threeal/cmake-action@main
with:
source-dir: .
build-dir: build
- name: Create TeX file
run: |
mkdir out
build/language > out/ipa.tex
cp data/*.tex out/
- name: Construct `table.pdf`
uses: xu-cheng/latex-action@v3
with:
working_directory: out
root_file: table.tex
latexmk_use_xelatex: true
- name: Construct `text.pdf`
uses: xu-cheng/latex-action@v3
with:
working_directory: out
root_file: text.tex
latexmk_use_xelatex: true