From e47ec7d0d5a367244bba74497f8eeda552231aac Mon Sep 17 00:00:00 2001 From: Pascal GUINET Date: Thu, 11 Sep 2025 18:23:34 +0200 Subject: [PATCH 1/2] fix: corriger pattern artifacts pour inclure tous les modules dans releases MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Le pattern '*-pdf*' excluait l'artifact principal 'formation-linux-pdfs-{SHA}' qui contient tous les modules de base (01-08). Le nouveau pattern '*pdf*' inclut cet artifact principal, garantissant que tous les modules soient disponibles dans les releases GitHub. Fix: modules 06, 07, 08 manquants dans les releases GitHub 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .github/workflows/build-pdfs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-pdfs.yml b/.github/workflows/build-pdfs.yml index 3509cfb..001909a 100644 --- a/.github/workflows/build-pdfs.yml +++ b/.github/workflows/build-pdfs.yml @@ -188,7 +188,7 @@ jobs: - name: 📥 Download all artifacts uses: actions/download-artifact@v4 with: - pattern: "*-pdf*" + pattern: "*pdf*" path: ./pdfs - name: 📋 List downloaded files From c697e51bebe143271a4d125dc95252d381d146f4 Mon Sep 17 00:00:00 2001 From: Pascal GUINET Date: Thu, 11 Sep 2025 18:41:04 +0200 Subject: [PATCH 2/2] =?UTF-8?q?fix:=20ajouter=20build-pdfs.yml=20aux=20che?= =?UTF-8?q?mins=20surveill=C3=A9s=20par=20test-build?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Le workflow de test ne se déclenchait pas pour les modifications du workflow de production. Ajouter build-pdfs.yml aux paths surveillés permet de tester les modifications des workflows de génération PDF. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .github/workflows/test-build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test-build.yml b/.github/workflows/test-build.yml index 5077bd2..4ec4917 100644 --- a/.github/workflows/test-build.yml +++ b/.github/workflows/test-build.yml @@ -8,6 +8,7 @@ on: - 'travaux_pratiques/**' - 'scripts/**' - '.github/workflows/test-build.yml' + - '.github/workflows/build-pdfs.yml' workflow_dispatch: # Permet de déclencher manuellement jobs: