We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 218ad4f commit d3edc11Copy full SHA for d3edc11
.github/workflows/test.yml
@@ -6,19 +6,21 @@ jobs:
6
compile:
7
runs-on: ubuntu-latest
8
steps:
9
- - uses: yusancky/setup-typst@v2
+ - uses: yusancky/setup-typst@v3
10
with:
11
version: latest
12
- uses: actions/checkout@v4
13
- name: Extract version
14
- id: toml
15
run: |
16
VERSION=$(awk -F'= *' '/^version/{gsub(/"/,"",$2);print $2}' typst.toml)
17
echo "VERSION=$VERSION" >> "$GITHUB_ENV"
18
- name: Link local template package
19
20
mkdir -p ~/.local/share/typst/packages/preview/accelerated-jacow
21
ln -s $(pwd) ~/.local/share/typst/packages/preview/accelerated-jacow/$VERSION
+ - name: Install font
22
+ run: |
23
+ sudo apt install tex-gyre
24
- name: Init & compile
25
26
typst init @preview/accelerated-jacow:$VERSION
0 commit comments