Skip to content
This repository has been archived by the owner on Nov 26, 2024. It is now read-only.

Commit

Permalink
Attempt fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
guillemcordoba committed May 10, 2022
1 parent d61f77f commit 4d8959f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 4d8959f

Please sign in to comment.