@@ -23,15 +23,15 @@ See [action.yml](https://github.com/WtfJoke/setup-tectonic/blob/main/action.yml)
2323
2424``` yml
2525steps :
26- - uses : wtfjoke/setup-tectonic@v3
26+ - uses : wtfjoke/setup-tectonic@v4
2727 - run : tectonic main.tex
2828` ` `
2929
3030You can also download a specific version of Tectonic
3131
3232` ` ` yml
3333steps :
34- - uses : wtfjoke/setup-tectonic@v3
34+ - uses : wtfjoke/setup-tectonic@v4
3535 with :
3636 tectonic-version : 0.14.1
3737 - run : tectonic main.tex
@@ -41,7 +41,7 @@ If you want to use biber, specify a biber version (for a full example see [below
4141
4242` ` ` yml
4343steps :
44- - uses : wtfjoke/setup-tectonic@v3
44+ - uses : wtfjoke/setup-tectonic@v4
4545 with :
4646 biber-version : 2.17
4747 - run : biber --version
5050## Upload pdf (using ` actions/upload-artifact`)
5151
5252` ` ` yml
53- name: ' Build LaTex Document'
53+ name: " Build LaTex Document"
5454on:
5555 push:
5656jobs:
6060 steps:
6161 - name: Checkout
6262 uses: actions/checkout@v4
63- - uses: wtfjoke/setup-tectonic@v3
63+ - uses: wtfjoke/setup-tectonic@v4
6464 - name: Run Tectonic
6565 run: tectonic main.tex
6666 - name: Upload pdf
7373# # With enabled cache (using `actions/cache`)
7474
7575` ` ` yml
76- name: ' Build LaTex Document'
76+ name: " Build LaTex Document"
7777on:
7878 push:
7979jobs:
9090 key: ${{ runner.os }}-tectonic-${{ hashFiles('**/*.tex') }}
9191 restore-keys: |
9292 ${{ runner.os }}-tectonic-
93- - uses: wtfjoke/setup-tectonic@v3
93+ - uses: wtfjoke/setup-tectonic@v4
9494 - name: Run Tectonic
9595 run: tectonic main.tex
9696 - name: Upload pdf
@@ -103,7 +103,7 @@ jobs:
103103# # With biber
104104
105105` ` ` yml
106- name: ' Build LaTex Document with Biber'
106+ name: " Build LaTex Document with Biber"
107107on:
108108 push:
109109jobs:
@@ -120,9 +120,9 @@ jobs:
120120 key: ${{ runner.os }}-tectonic-${{ hashFiles('**/*.tex') }}
121121 restore-keys: |
122122 ${{ runner.os }}-tectonic-
123- - uses: wtfjoke/setup-tectonic@v3
123+ - uses: wtfjoke/setup-tectonic@v4
124124 with:
125- biber-version: ' latest'
125+ biber-version: " latest"
126126 - name: Run Tectonic + Biber
127127 run: tectonic main.tex
128128 - name: Upload pdf
@@ -178,7 +178,7 @@ The official cache action [actions/cache](https://github.com/actions/cache) has
178178For tectonic the cache directories (`path`) are as follows (see also [tectonic-typesetting/tectonic#159](https://github.com/tectonic-typesetting/tectonic/issues/159)):
179179
180180| OS | Cache-Directory | Run-Command to export it as environment variable |
181- | ------- | ----------------------------------------- | ------------------------------------------------------------------------- |
181+ | ------- | ----------------------------------------- | ------------------------------------------------------------------------- | ----------------------------------------------------------------- |
182182| Linux | `~/.cache/Tectonic` | `echo TECTONIC_CACHE_PATH=~/.cache/Tectonic >> $GITHUB_ENV` |
183183| Mac | `~/Library/Caches/Tectonic` | `echo TECTONIC_CACHE_PATH=~/Library/Caches/Tectonic >> $GITHUB_ENV` |
184184| Windows | `%LOCALAPPDATA%\TectonicProject\Tectonic` | <code>echo TECTONIC_CACHE_PATH=$env:LOCALAPPDATA\TectonicProject\Tectonic | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append`</code> |
0 commit comments