From 6787f65701c420356238fe66ae97093b76d437da Mon Sep 17 00:00:00 2001 From: Jamie Pine Date: Mon, 20 Apr 2026 17:01:48 -0700 Subject: [PATCH] fix(ci): disable Linux release builds Bundler still hangs on linuxdeploy download mid-rpm even with createUpdaterArtifacts: false. Drop the ubuntu-22.04 matrix entry until we figure out a reliable path; the ubuntu-specific setup steps stay so we can re-enable by adding the matrix row back. --- .github/workflows/release.yml | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index edf29609..6c2bd5aa 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,17 +26,6 @@ jobs: args: "" python-version: "3.12" backend: "pytorch" - - platform: "ubuntu-22.04" - # --config override disables updater-artifact generation on Linux. - # tauri.conf.json has createUpdaterArtifacts: "v1Compatible" which - # on Linux wants to synthesize a .AppImage.tar.gz by downloading - # linuxdeploy at build time — this is what silently hangs CI - # (see v0.4.2 round 2, 25 min of no output after rpm bundling). - # We ship deb+rpm only; Linux users update via apt/dnf, not the - # Tauri in-app updater. - args: '--target x86_64-unknown-linux-gnu --bundles deb,rpm --verbose --config {"bundle":{"createUpdaterArtifacts":false}}' - python-version: "3.12" - backend: "pytorch" runs-on: ${{ matrix.platform }}