From 3ac9f1b0989853c8bbfa796e572aed116f3b3ad1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20Kr=C3=BChlmann?= Date: Thu, 1 Jan 2026 14:55:39 +0100 Subject: [PATCH] Use npx for ci --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6200881..9c00737 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,13 +25,13 @@ jobs: matrix: include: - os: ubuntu-latest - build-command: electron-builder --linux AppImage + build-command: npx electron-builder --linux AppImage artifact-name: electron-linux - os: windows-latest - build-command: electron-builder --win nsis + build-command: npx electron-builder --win nsis artifact-name: electron-windows - os: macos-latest - build-command: electron-builder --mac + build-command: npx electron-builder --mac artifact-name: electron-macos steps: - uses: actions/checkout@v4