From 3db4566e487da09980f2e34da9d9d660c02d916e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jon=C3=A1=C5=A1=20Jan=C4=8Da=C5=99=C3=ADk?= Date: Thu, 9 Apr 2026 13:22:11 +0200 Subject: [PATCH] build(ci): target Ubuntu 22.04 for Linux workflows --- .github/workflows/ci.yml | 4 ++-- .github/workflows/release.yml | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3afb4c6a8..a04ae1d0c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -54,7 +54,7 @@ jobs: - name: macOS os: macos-latest - name: Linux - os: ubuntu-latest + os: ubuntu-22.04 - name: Windows os: windows-latest steps: @@ -113,7 +113,7 @@ jobs: os: macos-latest build_command: npm run tauri -- build --debug --no-bundle - name: Linux - os: ubuntu-latest + os: ubuntu-22.04 build_command: npm run tauri -- build --debug --no-bundle - name: Windows os: windows-latest diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 856e0a9a6..218b2f068 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -177,9 +177,10 @@ jobs: fail-fast: false matrix: include: - - platform: ubuntu-24.04 + # Build on oldest supported Ubuntu baseline for broader runtime compatibility. + - platform: ubuntu-22.04 arch: x86_64 - - platform: ubuntu-24.04-arm + - platform: ubuntu-22.04-arm arch: aarch64 steps: - uses: actions/checkout@v4