From 0113275193784239177d58cb5dfa620d7e5c3fb3 Mon Sep 17 00:00:00 2001 From: Romane <122701716+rom-vtn@users.noreply.github.com> Date: Thu, 7 May 2026 18:33:25 +0200 Subject: [PATCH] remove working dir? --- .gitea/workflows/build.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 9f51c0a..93945b3 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -7,17 +7,15 @@ jobs: runs-on: ubuntu-latest steps: - name: build html presentation - working-directory: ./presentation uses: docker://marpteam/marp-cli:latest with: - args: presentation.md --html --allow-local-files -o index.html --html --theme-set themes -- + args: ./presentation/presentation.md --html --allow-local-files -o ./presentation/index.html --html --theme-set ./presentation/themes -- env: MARP_USER: root:root - name: build pdf presentation - working-directory: ./presentation uses: docker://marpteam/marp-cli:latest with: - args: presentation.md --html --allow-local-files -o presentation.pdf --theme-set themes -- + args: ./presentation/presentation.md --html --allow-local-files -o ./presentation/presentation.pdf --theme-set ./presentation/themes -- env: MARP_USER: root:root - name: compress as zip