From 7354cd6baf26fab12ccac6b4baa43251b5c4c836 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Tue, 5 Nov 2024 21:50:42 +0100 Subject: [PATCH] =?UTF-8?q?ajout=20pr=C3=A9sentation=20formation=20signatu?= =?UTF-8?q?re=20=C3=A0=20la=20compilation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/build-image.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/build-image.yml b/.gitea/workflows/build-image.yml index 60305d7..77a4f14 100644 --- a/.gitea/workflows/build-image.yml +++ b/.gitea/workflows/build-image.yml @@ -25,7 +25,7 @@ jobs: - name: Setup pandoc uses: https://github.com/r-lib/actions/setup-pandoc@v1 with: - pandoc-version: '3.4' + pandoc-version: '3.5' - name: Build presentation main run: pandoc -t revealjs --resource-path=.:presentation/src/ -s presentation/src/index.md -o presentation/src/index.html @@ -33,6 +33,9 @@ jobs: - name: Build presentation essaimage run: pandoc -t revealjs --resource-path=.:presentation/src/ -s presentation/src/essaimage.md -o presentation/src/essaimage.html + - name: Build presentation formation-signature + run: pandoc --from markdown+emoji -t revealjs --resource-path=.:presentation/src/ -s presentation/src/formation-signature.md -o presentation/src/formation-signature.html + - name: Set up Docker Buildx uses: https://github.com/docker/setup-buildx-action@v3