Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
MLopez-Ibanez committed Sep 28, 2023
1 parent ae41ced commit d868c99
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 50 deletions.
10 changes: 0 additions & 10 deletions .github/texlive/texlive.profile

This file was deleted.

34 changes: 0 additions & 34 deletions .github/texlive/texlive_install.sh

This file was deleted.

File renamed without changes.
10 changes: 4 additions & 6 deletions .github/workflows/test-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,21 +76,19 @@ jobs:
- name: Install additional LaTeX packages
if: ${{ env.FILES_CHANGED != 0 && steps.cache-tinytex.outputs.cache-hit != 'true'}}
run: |
texlive_root=./.github/texlive
texlive_packages=./.github/texlive_packages
echo "Updating TexLive"
# Keep no backups (not required, simply makes cache bigger)
tlmgr option -- autobackup 0
echo "Updating tlmgr itself"
tlmgr update --self
echo "Install ${texlive_root}/texlive_packages"
tlmgr install $(sed 's/\s*#.*//;/^\s*$/d' "${texlive_root}/texlive_packages")
echo "Install ${texlive_packages}"
tlmgr install $(sed 's/\s*#.*//;/^\s*$/d' "${texlive_packages}")
tlmgr path add
#echo $PATH
#echo "PATH=$PATH:$HOME/bin:$HOME/.local/bin" >> $GITHUB_ENV
- name: Run test
if: ${{ success() && env.FILES_CHANGED != 0 }}
run: echo $PATH && cd test && ./test.sh
run: cd test && ./test.sh

- name: Compress PDFs
if: ${{ success() && env.FILES_CHANGED != 0 }}
Expand Down

0 comments on commit d868c99

Please sign in to comment.