ci: fix typo in android test workflow (#9800)

This commit is contained in:
Jason Tsai 2024-05-17 00:44:48 +08:00 committed by GitHub
parent be95d8d37c
commit 86250a476e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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