From fab73a69a8e038876f1486d6b20cfeeda2b5c6e6 Mon Sep 17 00:00:00 2001 From: Sebastien Larinier Date: Wed, 23 Jul 2025 09:53:49 +0200 Subject: [PATCH] Updates zip archive creation path Removes the redundant "DIMA/" prefix from the path used during zip archive creation and in the file pattern for committing the archive. This ensures the correct path is used, streamlining the CI process. --- .github/workflows/zip-plugin.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/zip-plugin.yml b/.github/workflows/zip-plugin.yml index 1445813..d7023ff 100644 --- a/.github/workflows/zip-plugin.yml +++ b/.github/workflows/zip-plugin.yml @@ -30,7 +30,7 @@ jobs: # C'est la méthode la plus fiable pour gérer les chemins complexes. - name: 2. Compression du répertoire en .zip run: | - cd "DIMA/plugin/plugin_chrome/releases/" + cd "plugin/plugin_chrome/releases/" zip -r Plugin-dima.zip Plugin-dima # Étape 3 : Commiter et pousser le fichier .zip sur le dépôt @@ -43,4 +43,4 @@ jobs: commit_message: "🤖 CI : Mise à jour automatique de l'archive Plugin-dima.zip" # Le chemin exact du fichier à commiter - file_pattern: 'DIMA/plugin/plugin_chrome/releases/Plugin-dima.zip' + file_pattern: 'plugin/plugin_chrome/releases/Plugin-dima.zip'