Skip to content

Commit

Permalink
Merge pull request #10 from Kenny2github/cd
Browse files Browse the repository at this point in the history
Use GitHub Actions to automatically generate PDFs
  • Loading branch information
EngSocVPC authored Oct 4, 2023
2 parents 260c737 + ad17eb9 commit 2583a60
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/generate-pdfs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Generate PDFs from TeX
on:
push:
paths:
- '**/*.tex'

permissions:
contents: write

jobs:
generate-pdfs:
name: Generate PDFs
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Gather changed TeX files
id: changed-files
uses: tj-actions/changed-files@v37
with:
files: '**/*.tex'
separator: "\n"

- name: (Hack) Use EB Garamond instead of Garamond
run: |
shopt -s globstar
sed -i 's/\\setmainfont{Garamond}/\\usepackage[lining,tabular]{ebgaramond}/' **/*.tex
- name: Compile TeX documents
uses: xu-cheng/latex-action@v2
with:
root_file: ${{ steps.changed-files.outputs.all_changed_files }}
work_in_root_file_dir: true
latexmk_use_xelatex: true

- name: Commit and push PDFs
run: |
shopt -s globstar
git config user.name github-actions
git config user.email github-actions@github.com
git add **/*.pdf
git commit -m "Generate PDFs from commit $GITHUB_SHA"
git push
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
*.out
*.aux
*.log
*.toc
*.vs*

0 comments on commit 2583a60

Please sign in to comment.