Skip to content

Commit 2f24c80

Browse files
committed
update workflows to track the template
1 parent e106a06 commit 2f24c80

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ jobs:
5151
repository: ${{ env.REGISTRY_REPO }}
5252
token: ${{ secrets.REGISTRY_TOKEN }}
5353
path: typst-packages
54+
sparse-checkout: ${{ env.PATH_PREFIX }}/${{ env.PKG_NAME }}/${{ env.PKG_VERSION }}
5455

5556
- name: Release package
5657
run: |

.github/workflows/tests.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,15 @@ jobs:
2828
- name: Checkout
2929
uses: actions/checkout@v4
3030

31-
- name: Install just and tytanic
31+
- name: Install just
3232
uses: taiki-e/install-action@v2
3333
with:
34-
tool: just,tytanic@${{ matrix.typst-version.tytanic }}
34+
tool: just
35+
36+
- name: Install tytanic
37+
uses: typst-community/setup-tytanic@v1
38+
with:
39+
tytanic-version: ${{ matrix.typst-version.tytanic }}
3540

3641
- name: Setup typst
3742
id: setup-typst

Justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ doc:
1414

1515
# run test suite
1616
test *args:
17-
tt run {{ args }}
17+
tt run --no-fail-fast {{ args }}
1818

1919
# update test cases
2020
update *args:

0 commit comments

Comments
 (0)