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