|
@@ -27,7 +27,7 @@ jobs:
|
|
|
strategy:
|
|
|
fail-fast: false
|
|
|
matrix:
|
|
|
- platform: [ubuntu-latest, macos-latest, windows-latest]
|
|
|
+ platform: [ubuntu-22.04, macos-latest, windows-latest]
|
|
|
|
|
|
steps:
|
|
|
- uses: actions/checkout@v2
|
|
@@ -37,7 +37,7 @@ jobs:
|
|
|
toolchain: stable
|
|
|
|
|
|
- name: install Linux dependencies
|
|
|
- if: matrix.platform == 'ubuntu-latest'
|
|
|
+ if: matrix.platform == 'ubuntu-22.04'
|
|
|
run: |
|
|
|
sudo apt-get update
|
|
|
sudo apt-get install -y webkit2gtk-4.0 libayatana-appindicator3-dev
|
|
@@ -90,17 +90,17 @@ jobs:
|
|
|
TAURI_PRIVATE_KEY: dW50cnVzdGVkIGNvbW1lbnQ6IHJzaWduIGVuY3J5cHRlZCBzZWNyZXQga2V5ClJXUlRZMEl5YTBGV3JiTy9lRDZVd3NkL0RoQ1htZmExNDd3RmJaNmRMT1ZGVjczWTBKZ0FBQkFBQUFBQUFBQUFBQUlBQUFBQWdMekUzVkE4K0tWQ1hjeGt1Vkx2QnRUR3pzQjVuV0ZpM2czWXNkRm9hVUxrVnB6TUN3K1NheHJMREhQbUVWVFZRK3NIL1VsMDBHNW5ET1EzQno0UStSb21nRW4vZlpTaXIwZFh5ZmRlL1lSN0dKcHdyOUVPclVvdzFhVkxDVnZrbHM2T1o4Tk1NWEU9Cg==
|
|
|
TAURI_KEY_PASSWORD:
|
|
|
# upload assets
|
|
|
- - uses: actions/upload-artifact@v2
|
|
|
- if: matrix.platform == 'ubuntu-latest'
|
|
|
+ - uses: actions/upload-artifact@v3
|
|
|
+ if: matrix.platform == 'ubuntu-22.04'
|
|
|
with:
|
|
|
name: linux-updater-artifacts
|
|
|
path: ./examples/updater/src-tauri/target/release/bundle/appimage/updater-example_*.AppImage.*
|
|
|
- - uses: actions/upload-artifact@v2
|
|
|
+ - uses: actions/upload-artifact@v3
|
|
|
if: matrix.platform == 'windows-latest'
|
|
|
with:
|
|
|
name: windows-updater-artifacts
|
|
|
path: ./examples/updater/src-tauri/target/release/bundle/msi/*
|
|
|
- - uses: actions/upload-artifact@v2
|
|
|
+ - uses: actions/upload-artifact@v3
|
|
|
if: matrix.platform == 'macos-latest'
|
|
|
with:
|
|
|
name: macos-updater-artifacts
|