Skip to content

Commit

Permalink
set up workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
AShepelevv authored Dec 28, 2023
1 parent a1136f1 commit 890ebdd
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Build LaTeX document
on: [push]
jobs:
build_latex:
runs-on: ubuntu-latest
steps:
- name: Set up Git repository
uses: actions/checkout@v3
- name: Compile LaTeX document
uses: xu-cheng/latex-action@v3
with:
root_file: astro-notebook.tex
latexmk_use_xelatex: true
latexmk_shell_escape: true
- name: Upload PDF file
uses: actions/upload-artifact@v3
with:
name: PDF
path: astro-notebook.pdf

0 comments on commit 890ebdd

Please sign in to comment.