diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index e1b0ec5f..6bdf2e7a 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -42,7 +42,7 @@ jobs: - name: setup binaries (Windows only) if: matrix.platform == 'windows-2019' run: | - cargo install lair_keystore --version 0.1.3 + cargo install --version 0.1.3 lair_keystore $LkPath = Get-Command lair-keystore | Select-Object -ExpandProperty Definition Copy-Item $LkPath -Destination src-tauri/bins/lair-keystore-x86_64-pc-windows-msvc.exe @@ -72,7 +72,7 @@ jobs: - name: setup binaries (macos only) if: matrix.platform == 'macos-10.15' run: | - cargo install lair_keystore --version 0.1.3 + cargo install --version 0.1.3 lair_keystore LAIR_PATH=$(which lair-keystore) cp $LAIR_PATH src-tauri/bins/lair-keystore-x86_64-apple-darwin @@ -112,7 +112,7 @@ jobs: - name: setup binaries (ubuntu only) if: matrix.platform == 'ubuntu-18.04' run: | - cargo install lair_keystore --version 0.1.3 + cargo install --version 0.1.3 lair_keystore LAIR_PATH=$(which lair-keystore) cp $LAIR_PATH src-tauri/bins/lair-keystore-x86_64-unknown-linux-gnu diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 198bf7e8..d4150ad7 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -39,7 +39,7 @@ jobs: run: | mkdir src-tauri/bins - cargo install lair_keystore --version 0.1.3 + cargo install --version 0.1.3 lair_keystore LAIR_PATH=$(which lair-keystore) cp $LAIR_PATH src-tauri/bins/lair-keystore-x86_64-unknown-linux-gnu