Skip to content

Commit 12a0d26

Browse files
committed
ci: move to ubuntu 22.04 for appimage builds
1 parent a0cc499 commit 12a0d26

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/tauri-build-dev.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
create-release:
99
permissions:
1010
contents: write
11-
runs-on: ubuntu-22.04
11+
runs-on: ubuntu-latest
1212
outputs:
1313
release_id: ${{ steps.create-release.outputs.result }}
1414

@@ -76,7 +76,7 @@ jobs:
7676
strategy:
7777
fail-fast: false
7878
matrix:
79-
platform: [ macos-latest, ubuntu-20.04, windows-latest ]
79+
platform: [ macos-latest, ubuntu-22.04, windows-latest ]
8080

8181
runs-on: ${{ matrix.platform }}
8282
steps:
@@ -99,7 +99,7 @@ jobs:
9999
- name: install Rust stable
100100
uses: dtolnay/rust-toolchain@stable
101101
- name: install dependencies (ubuntu only)
102-
if: matrix.platform == 'ubuntu-20.04'
102+
if: matrix.platform == 'ubuntu-22.04'
103103
run: |
104104
sudo apt-get update
105105
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libayatana-appindicator3-dev librsvg2-dev

.github/workflows/tauri-build-prod.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
strategy:
7777
fail-fast: false
7878
matrix:
79-
platform: [ macos-latest, ubuntu-latest, windows-latest ]
79+
platform: [ macos-latest, ubuntu-22.04, windows-latest ]
8080

8181
runs-on: ${{ matrix.platform }}
8282
steps:
@@ -99,7 +99,7 @@ jobs:
9999
- name: install Rust stable
100100
uses: dtolnay/rust-toolchain@stable
101101
- name: install dependencies (ubuntu only)
102-
if: matrix.platform == 'ubuntu-latest'
102+
if: matrix.platform == 'ubuntu-22.04'
103103
run: |
104104
sudo apt-get update
105105
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libayatana-appindicator3-dev librsvg2-dev
@@ -260,7 +260,7 @@ jobs:
260260
publish-release:
261261
permissions:
262262
contents: write
263-
runs-on: ubuntu-latest
263+
runs-on: ubuntu-22.04
264264
needs: [ create-release, build-tauri ]
265265

266266
steps:

.github/workflows/tauri-build-staging.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
strategy:
7777
fail-fast: false
7878
matrix:
79-
platform: [ macos-latest, ubuntu-latest, windows-latest ]
79+
platform: [ macos-latest, ubuntu-22.04, windows-latest ]
8080

8181
runs-on: ${{ matrix.platform }}
8282
steps:
@@ -99,7 +99,7 @@ jobs:
9999
- name: install Rust stable
100100
uses: dtolnay/rust-toolchain@stable
101101
- name: install dependencies (ubuntu only)
102-
if: matrix.platform == 'ubuntu-latest'
102+
if: matrix.platform == 'ubuntu-22.04'
103103
run: |
104104
sudo apt-get update
105105
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libayatana-appindicator3-dev librsvg2-dev
@@ -260,7 +260,7 @@ jobs:
260260
permissions:
261261
contents: write
262262
timeout-minutes: 15
263-
runs-on: ubuntu-latest
263+
runs-on: ubuntu-22.04
264264
needs: [ create-release, build-tauri ]
265265

266266
steps:

0 commit comments

Comments
 (0)