From bf4e58ec68a4d3360ef538b3a769c1dce50177fa Mon Sep 17 00:00:00 2001 From: TheWover <17090738+TheWover@users.noreply.github.com> Date: Wed, 1 Oct 2025 09:29:23 -0600 Subject: [PATCH 1/2] build on main --- .github/workflows/release-desktop.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release-desktop.yml b/.github/workflows/release-desktop.yml index 45ea802..5963b65 100644 --- a/.github/workflows/release-desktop.yml +++ b/.github/workflows/release-desktop.yml @@ -4,6 +4,7 @@ on: push: branches: - release-testing + - main tags: - 'v*.*.*' From 404acd256ed4d1f50b4ebe7d91aa80c1fb9819c9 Mon Sep 17 00:00:00 2001 From: TheWover <17090738+TheWover@users.noreply.github.com> Date: Wed, 1 Oct 2025 09:41:32 -0600 Subject: [PATCH 2/2] Remove Windows MSIX bundle because we won't deploy to Windows Store --- .github/workflows/release-desktop.yml | 29 --------------------------- 1 file changed, 29 deletions(-) diff --git a/.github/workflows/release-desktop.yml b/.github/workflows/release-desktop.yml index 5963b65..9152fb3 100644 --- a/.github/workflows/release-desktop.yml +++ b/.github/workflows/release-desktop.yml @@ -212,14 +212,6 @@ jobs: echo "Stapling DMG/ZIP artifacts..." find dist-app -type f \( -name "*.dmg" -o -name "*.zip" \) -print0 | xargs -0 -I{} xcrun stapler staple -v "{}" || true - - name: Package desktop MSIX (no publish for branches) - if: startsWith(github.ref, 'refs/heads/') && runner.os == 'Windows' - working-directory: desktop - shell: bash - run: | - # Build Windows MSIX/AppX package for Store submission - npx electron-builder --win appx --publish never - - name: Package and publish desktop app (tags/releases) if: startsWith(github.ref, 'refs/tags/') working-directory: desktop @@ -261,16 +253,6 @@ jobs: echo "Stapling DMG/ZIP artifacts..." find dist-app -type f \( -name "*.dmg" -o -name "*.zip" \) -print0 | xargs -0 -I{} xcrun stapler staple -v "{}" || true - - name: Package and publish Windows MSIX (tags/releases) - if: startsWith(github.ref, 'refs/tags/') && runner.os == 'Windows' - working-directory: desktop - env: - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - shell: bash - run: | - # Build and (if configured) publish Windows MSIX/AppX artifact - npx electron-builder --win appx - - name: Upload packaged artifacts uses: actions/upload-artifact@v4 with: @@ -282,15 +264,4 @@ jobs: if-no-files-found: error retention-days: 7 - - name: Upload Windows MSIX artifact - if: runner.os == 'Windows' - uses: actions/upload-artifact@v4 - with: - name: desktop-windows-msix - path: | - desktop/dist-app/**/*.msix - desktop/dist-app/**/*.appx - if-no-files-found: warn - retention-days: 7 -