There was an error while loading. Please reload this page.
1 parent 35035f6 commit 9f830b3Copy full SHA for 9f830b3
.github/workflows/ci.yaml
@@ -35,11 +35,13 @@ jobs:
35
python-version: ${{ matrix.python-version }}
36
- name: Print Python Information
37
run: python -VV
38
- - name: Specify tinytex mirror (CTAN_REPO)
+ - name: Install TinyTeX
39
run: |
40
- echo "CTAN_REPO=https://mirrors.dotsrc.org/ctan/" >> $GITHUB_ENV
41
- - name: install TinyTeX
42
- uses: r-lib/actions/setup-tinytex@v2
+ pip3 install -U pytinytex
+ python3 -c "import pytinytex; pytinytex.download_tinytex()"
+ echo "Adding TinyTeX to PATH"
43
+ TINYTEX_PATH=$(python3 -c "import pytinytex; print(pytinytex.get_tinytex_path())")
44
+ echo "$TINYTEX_PATH" >> $GITHUB_PATH
45
- name: Install and configure Poetry
46
47
pip3 install -U poetry setuptools
0 commit comments