Skip to content

Commit 055471d

Browse files
committed
feat: update Actions runner
1 parent 8f64569 commit 055471d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/tauri_app_build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
build:
1010
strategy:
1111
matrix:
12-
os: [windows-latest,ubuntu-20.04]
12+
os: [windows-latest,ubuntu-22.04]
1313

1414
runs-on: ${{ matrix.os }}
1515

@@ -20,7 +20,7 @@ jobs:
2020
uses: actions/checkout@v3
2121

2222
- run: echo "VERSION=$(jq -r '.package.version' vue/src-tauri/tauri.conf.json)" >> "$GITHUB_ENV"
23-
if: matrix.os == 'ubuntu-20.04'
23+
if: matrix.os == 'ubuntu-22.04'
2424
- run: echo "VERSION=$(jq -r '.package.version' vue/src-tauri/tauri.conf.json)" >> $env:GITHUB_ENV
2525
if: matrix.os == 'windows-latest'
2626

@@ -48,7 +48,7 @@ jobs:
4848
vue/dist=vue/dist
4949
5050
- run: cp out/iib_api_server out/iib_app_cli-${{ env.VERSION }}-${{ runner.os }}
51-
if: matrix.os == 'ubuntu-20.04'
51+
if: matrix.os == 'ubuntu-22.04'
5252
- run: cp out/iib_api_server.exe out/iib_app_cli-${{ env.VERSION }}-${{ runner.os }}.exe
5353
if: matrix.os == 'windows-latest'
5454

@@ -72,7 +72,7 @@ jobs:
7272
if: matrix.os == 'windows-latest'
7373

7474
- run: mv out/iib_api_server vue/src-tauri/iib_api_server-x86_64-unknown-linux-gnu
75-
if: matrix.os == 'ubuntu-20.04'
75+
if: matrix.os == 'ubuntu-22.04'
7676

7777
- name: Install frontend dependencies
7878
run: yarn install
@@ -92,7 +92,7 @@ jobs:
9292
workspaces: './vue/src-tauri -> target'
9393

9494
- name: Install dependencies (ubuntu only)
95-
if: matrix.os == 'ubuntu-20.04'
95+
if: matrix.os == 'ubuntu-22.04'
9696
run: |
9797
sudo apt-get update
9898
sudo apt-get install -y libgtk-3-dev webkit2gtk-4.0 libayatana-appindicator3-dev librsvg2-dev patchelf
@@ -165,7 +165,7 @@ jobs:
165165
workspaces: './vue/src-tauri -> target'
166166

167167
- name: Install dependencies (ubuntu only)
168-
if: matrix.os == 'ubuntu-20.04'
168+
if: matrix.os == 'ubuntu-22.04'
169169
run: |
170170
sudo apt-get update
171171
sudo apt-get install -y libgtk-3-dev webkit2gtk-4.0 libayatana-appindicator3-dev librsvg2-dev patchelf

0 commit comments

Comments
 (0)