From a6ebf10cf8868a54f2523beb019568de1f1712f5 Mon Sep 17 00:00:00 2001 From: Jaifroid Date: Tue, 6 Jun 2023 10:39:20 +0100 Subject: [PATCH] Add correct dist folder to build artefacts --- .github/workflows/build-electron.yml | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build-electron.yml b/.github/workflows/build-electron.yml index 6eb13367..c86e1639 100644 --- a/.github/workflows/build-electron.yml +++ b/.github/workflows/build-electron.yml @@ -89,9 +89,9 @@ jobs: with: name: kiwix-js-electron_linux path: | - *.AppImage - *.deb - *.rpm + dist/bld/electron/*.AppImage + dist/bld/electron/*.deb + dist/bld/electron/*.rpm Release_Windows: runs-on: windows-latest @@ -167,9 +167,9 @@ jobs: with: name: kiwix-js-electron_windows path: | - *.exe - *.appx - *.zip + dist/bld/electron/*.exe + dist/bld/electron/*.appx + dist/bld/electron/*.zip Release_NWJS: runs-on: windows-latest @@ -225,6 +225,5 @@ jobs: if: github.event.inputs.target == 'artefacts' uses: actions/upload-artifact@v3 with: - name: kiwix-js-nwjs - path: | - *.zip \ No newline at end of file + name: kiwix-js-nwjs_windows + path: dist/bld/nwjs/*.zip \ No newline at end of file