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.
Этот коммит содержится в:
Sebastien Larinier 2025-07-23 09:53:49 +02:00
родитель f3a10ae0c5
Коммит fab73a69a8
Не найден ключ, соответствующий данной подписи

4
.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'