From 4d553138be90705a341c0f6fa090782a0169a06b Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Mon, 17 Jun 2024 12:41:41 +0200 Subject: [PATCH] Fixed installation of tauri-cli --- .github/workflows/build-and-release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-and-release.yml b/.github/workflows/build-and-release.yml index 8e94a917..0db65bb3 100644 --- a/.github/workflows/build-and-release.yml +++ b/.github/workflows/build-and-release.yml @@ -242,7 +242,7 @@ jobs: if: matrix.platform != 'windows-latest' run: | if ! cargo tauri --version > /dev/null 2>&1; then - cargo install tauri-cli --version ${{ env.TAURI_VERSION }} + cargo install tauri-cli else echo "Tauri is already installed" fi @@ -251,7 +251,7 @@ jobs: if: matrix.platform == 'windows-latest' run: | if (-not (cargo tauri --version 2>$null)) { - cargo install tauri-cli --version ${{ env.TAURI_VERSION }} + cargo install tauri-cli } else { Write-Output "Tauri is already installed" } @@ -480,7 +480,7 @@ jobs: apt-get install --yes libwebkit2gtk-4.0-dev build-essential libssl-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev # Setup Tauri: - cargo install tauri-cli --version $TAURI_VERSION + cargo install tauri-cli - name: Add the built runner image to the cache if: steps.linux_arm_cache.outputs.cache-hit != 'true'