Skip to content

Commit

Permalink
ci: fix typo in android test workflow (#9800)
Browse files Browse the repository at this point in the history
  • Loading branch information
pewsheen committed May 16, 2024
1 parent be95d8d commit 86250a4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test-android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,13 +84,13 @@ jobs:
- name: build CLI
run: cargo build --manifest-path ./tooling/cli/Cargo.toml

- name: move CLI to cargo bin dir
if: matrix.os != "windows-latest"
if: matrix.platform != 'windows-latest'
run: mv ./tooling/cli/target/debug/cargo-tauri $HOME/.cargo/bin

- name: move CLI to cargo bin dir
if: matrix.os == "windows-latest"
if: matrix.platform == 'windows-latest'
run: mv ./tooling/cli/target/debug/cargo-tauri.exe $HOME/.cargo/bin

- name: build Tauri API
Expand Down

0 comments on commit 86250a4

Please sign in to comment.