From 4bd94038326c4ed77797bdb6196cf5c896ec3f21 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20Kr=C3=BChlmann?= Date: Sun, 4 Jan 2026 15:32:00 +0100 Subject: [PATCH] Never publish --- .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 2be7b0a..c707010 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,13 +25,13 @@ jobs: matrix: include: - os: ubuntu-latest - build-command: npx electron-builder --linux AppImage + build-command: npx electron-builder --linux AppImage --publish never artifact-name: electron-linux - os: windows-latest - build-command: npx electron-builder --win nsis + build-command: npx electron-builder --win nsis --publish never artifact-name: electron-windows - os: macos-latest - build-command: npx electron-builder --mac + build-command: npx electron-builder --mac --publish never artifact-name: electron-macos steps: - uses: actions/checkout@v4