From 9f12a0ac2f6a67a9cf1bd86fd9ab24d98f6b91db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20Kr=C3=BChlmann?= Date: Mon, 5 Jan 2026 13:05:10 +0100 Subject: [PATCH] Limit uploads --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c707010..3c480bd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,6 +20,7 @@ jobs: electron-build: name: Electron packages (${{ matrix.os }}) + if: github.event_name == 'push' && github.ref == 'refs/heads/master' runs-on: ${{ matrix.os }} strategy: matrix: @@ -49,7 +50,10 @@ jobs: uses: actions/upload-artifact@v4 with: name: ${{ matrix.artifact-name }} - path: dist/** + path: | + dist/*.AppImage + dist/*.exe + dist/*.dmg docker: runs-on: ubuntu-latest