From 7f7314de81a69265379c397a8cf9e755e8cf6a95 Mon Sep 17 00:00:00 2001 From: Kristofers Solo Date: Mon, 13 Jan 2025 19:12:57 +0200 Subject: [PATCH] fix: font path --- .github/workflows/deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 6a23d15..c650ee7 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -13,7 +13,7 @@ jobs: - name: Checkout repository uses: actions/checkout@v3 - name: Clone fonts repository - run: git clone https://github.com/touying-typ/fonts.git assets/fonts --depth=1 + run: git clone https://github.com/touying-typ/fonts.git fonts --depth=1 - name: Set up Python uses: actions/setup-python@v4 with: @@ -23,7 +23,7 @@ jobs: - name: Build HTML File run: | mkdir build - touying compile presentation.typ --output build/index.html --format html --font-paths assets/fonts + touying compile presentation.typ --output build/index.html --format html --font-paths fonts --font-paths assets/fonts - name: Deploy to GitHub Pages uses: JamesIves/github-pages-deploy-action@v4 with: