From 0d9b8c76f16a2f503674a397313f76f10a3755b5 Mon Sep 17 00:00:00 2001 From: Romane <122701716+rom-vtn@users.noreply.github.com> Date: Thu, 7 May 2026 18:40:31 +0200 Subject: [PATCH] maybe it works better with a checkout huh???? --- .gitea/workflows/build.yaml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 93945b3..a7d4b19 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -6,16 +6,20 @@ jobs: name: build marp presentation runs-on: ubuntu-latest steps: + - name: checkout + uses: actions/checkout@v4 - name: build html presentation + working-directory: ./presentation uses: docker://marpteam/marp-cli:latest with: - args: ./presentation/presentation.md --html --allow-local-files -o ./presentation/index.html --html --theme-set ./presentation/themes -- + args: ./presentation.md --html --allow-local-files -o ./index.html --html --theme-set ./themes -- env: MARP_USER: root:root - name: build pdf presentation uses: docker://marpteam/marp-cli:latest + working-directory: ./presentation with: - args: ./presentation/presentation.md --html --allow-local-files -o ./presentation/presentation.pdf --theme-set ./presentation/themes -- + args: ./presentation.md --html --allow-local-files -o ./presentation.pdf --theme-set ./themes -- env: MARP_USER: root:root - name: compress as zip