Remove glow marker from lightstaff #172
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: status check compile | |
"on": | |
pull_request: | |
types: [opened, synchronize] | |
workflow_call: | |
jobs: | |
build-pdfs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout git repository | |
uses: actions/checkout@v3 | |
# https://github.com/actions/cache/issues/342 | |
- name: 💾 Caching | |
uses: actions/cache@v3 | |
with: | |
path: | | |
**/build | |
**/sub_* | |
key: ${{ runner.os }}-pengu-cache-doc-${{ github.run_id }} | |
restore-keys: ${{ runner.os }}-pengu-cache-doc- | |
- name: 📄 Compile the Documentation | |
uses: xu-cheng/latex-action@v2 | |
with: | |
pre_compile: "tlmgr remove --force tikzpingus" | |
working_directory: doc | |
root_file: tikzpingus-doc.tex | |
- name: 📄 Compile Examples | |
uses: xu-cheng/latex-action@v2 | |
with: | |
# remove ctan package to insure local | |
pre_compile: "tlmgr remove --force tikzpingus" | |
working_directory: examples | |
root_file: | | |
showcase.tex | |
minimal.tex | |
cloak.tex | |
spl.tex | |
hey-pingu.tex | |
- name: ⬆️ Upload doc artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: doc-output | |
path: | | |
doc/build/*.pdf | |
doc/build/tikzpingus-doc.* | |
- name: ⬆️ Upload examples artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: examples-output | |
path: examples/build/*.pdf |