From b0e6d09301dd886d743d920b38833f57f985244a Mon Sep 17 00:00:00 2001 From: Blomios Date: Sat, 25 Apr 2026 23:02:38 +0200 Subject: [PATCH] fix: correct artifact names in release job --- .github/workflows/build.yml | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f72ec3d..763afd1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -81,4 +81,19 @@ jobs: - name: Télécharger les artefacts Windows uses: actions/download-artifact@v4 with: - name: w + name: windows-build + path: artifacts/windows + + - name: Télécharger les artefacts Linux + uses: actions/download-artifact@v4 + with: + name: linux-build + path: artifacts/linux + + - name: Créer la release GitHub + uses: softprops/action-gh-release@v2 + with: + files: | + artifacts/windows/** + artifacts/linux/** + generate_release_notes: true