We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15d3d3b commit 49548dfCopy full SHA for 49548df
.github/workflows/ci.yml
@@ -25,8 +25,13 @@ jobs:
25
crate: tytanic
26
git: https://github.com/tingerrr/tytanic.git
27
- run: |
28
+ rustup target add wasm32-unknown-unknown
29
+ CETZ=$(mktemp -d)
30
mkdir -p ~/.local/share/typst/packages/preview/cetz
- git clone --depth 1 --branch release-0.4.0 https://github.com/cetz-package/cetz.git ~/.local/share/typst/packages/preview/cetz/0.4.0
31
+ git clone --depth 1 --branch release-0.4.0 https://github.com/cetz-package/cetz.git "$CETZ"
32
+ cd "$CETZ"
33
+ git submodule update --init --recursive
34
+ just install @preview
35
- uses: typst-community/setup-typst@v3
36
with:
37
typst-version: '0.13.1'
0 commit comments