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