test gitea action
Some checks failed
Build LaTeX on Host / build (push) Has been cancelled

This commit is contained in:
2025-07-21 13:45:35 +08:00
parent 2102936388
commit 27c4fa6d0e
4 changed files with 28 additions and 1 deletions

View File

@@ -0,0 +1,25 @@
name: Build LaTeX on Host
on: [push]
jobs:
build:
# Tell Gitea to use your host runner
runs-on: self-hosted
steps:
- name: Check out the repository
uses: actions/checkout@v4
- name: Compile LaTeX using local TeX Live
# These commands run directly in your machine's shell
run: |
echo "Compiling document..."
latexmk distribution.tex
latexmk Notes_SODA23.tex
latexmk SDP.tex
- name: Upload PDF artifact
uses: actions/upload-artifact@v3
with:
name: distribution.pdf
path: distribution.pdf