From b7cae26f9e73f9ff2847383e973ca1a0b28ecaae Mon Sep 17 00:00:00 2001 From: Anirudh Sevugan Date: Mon, 3 Feb 2025 16:51:21 +0530 Subject: [PATCH] Update compile-electron.yml --- .github/workflows/compile-electron.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/compile-electron.yml b/.github/workflows/compile-electron.yml index f056abb..af74555 100644 --- a/.github/workflows/compile-electron.yml +++ b/.github/workflows/compile-electron.yml @@ -15,7 +15,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, macos-latest, windows-latest] - node-version: [22] # Use an appropriate Node.js version + node-version: [22] # Node.js version 22, required for Electron 35 include: - os: ubuntu-latest target: AppImage @@ -57,14 +57,14 @@ jobs: - name: Package Electron app run: | - npx electron-builder --${{ matrix.target }} --arch ${{ matrix.arch }} --projectDir ./simpliplay + npx electron-builder --${{ matrix.os }} --${{ matrix.target }} --arch ${{ matrix.arch }} --projectDir ./simpliplay env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Upload artifacts uses: actions/upload-artifact@v4 with: - name: Electron-App-${{ matrix.os }}-${{ matrix.arch }} + name: simpliplay-${{ matrix.os }}-${{ matrix.arch }} path: | simpliplay/dist/*.AppImage simpliplay/dist/*.dmg