From 77a5fe53e2218f77e6eb130b3c05c5ec788a46d3 Mon Sep 17 00:00:00 2001 From: Benjamin Klum Date: Tue, 9 Apr 2024 18:26:10 +0200 Subject: [PATCH] GitHub Actions: Fix release.yml --- .github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8d7a6ce..47fd96c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,7 +25,7 @@ jobs: args: '--bundles none' src: 'target/release/reaboot.exe' dest: 'reaboot-x64.exe' - - platform: 'ubuntu-20.04' # for Tauri v1 you could replace this with ubuntu-20.04. + - platform: 'ubuntu-22.04' # for Tauri v1 you could replace this with ubuntu-20.04. args: '--bundles deb' src: 'target/release/bundle/deb/reaboot_*_amd64.deb' dest: 'reaboot-x86_64.deb' @@ -35,7 +35,7 @@ jobs: - uses: actions/checkout@v4 - name: install dependencies (ubuntu only) - if: matrix.settings.platform == 'ubuntu-20.04' # This must match the platform value defined above. + if: matrix.settings.platform == 'ubuntu-22.04' # This must match the platform value defined above. run: | sudo apt-get update sudo apt-get install -y libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf @@ -75,8 +75,8 @@ jobs: - name: Upload artifact uses: actions/upload-artifact@v4 with: - name: ${{ matrix.dest }} - path: ${{ matrix.src }} + name: ${{ matrix.settings.dest }} + path: ${{ matrix.settings.src }} # - uses: tauri-apps/tauri-action@v0 # env: