diff options
author | Naoki Pross <np@0hm.ch> | 2021-10-12 19:47:14 +0200 |
---|---|---|
committer | Naoki Pross <np@0hm.ch> | 2021-10-12 19:56:41 +0200 |
commit | b242a3e7cc9263386ab36571266a7b2361f164f3 (patch) | |
tree | e7aada524003f78d04137a17bf7d7bd2be3b18fe | |
parent | Merge branch 'master' of github.com:NaoPross/Fading (diff) | |
download | Fading-b242a3e7cc9263386ab36571266a7b2361f164f3.tar.gz Fading-b242a3e7cc9263386ab36571266a7b2361f164f3.zip |
Fix workflow
-rw-r--r-- | .github/texlive/requirements.txt | 3 | ||||
-rw-r--r-- | .github/workflows/latex.yml | 6 |
2 files changed, 5 insertions, 4 deletions
diff --git a/.github/texlive/requirements.txt b/.github/texlive/requirements.txt new file mode 100644 index 0000000..961c08e --- /dev/null +++ b/.github/texlive/requirements.txt @@ -0,0 +1,3 @@ +texlive-xetex +texlive-bibtex-extra +biber diff --git a/.github/workflows/latex.yml b/.github/workflows/latex.yml index 7af6e80..cb48d39 100644 --- a/.github/workflows/latex.yml +++ b/.github/workflows/latex.yml @@ -10,12 +10,10 @@ jobs: runs-on: ubuntu-latest steps: - - name: Setup TeXLive - uses: DanySK/setup-texlive-action@0.1.1 - with: - requirements-file: .github/texlive/packages.tex - name: Checkout Repo uses: actions/checkout@v2 + - name: Setup TeXLive + uses: DanySK/setup-texlive-action@0.1.1 - name: Typeset Project Plan run: make -C doc/projectplan - name: Typeset Thesis |