Skip to content

install latext

install latext #4

Workflow file for this run

name: Export wiki to pdf
on:
push:
branches:
- export_pdf
jobs:
job1:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Checkout wiki
uses: actions/checkout@v4
with:
repository: DoctorReid/StarRailAutoProxy.wiki
ref: master
fetch-depth: 1
path: wiki
- name: Install pandoc
run: sudo apt-get install -y pandoc
- name: Install TeX Live
run: sudo apt-get install -y texlive
- name: Convert Markdown to PDF
run: pandoc wiki/Home.md -o output.pdf