Skip to content

Commit

Permalink
try moving
Browse files Browse the repository at this point in the history
  • Loading branch information
amrbashir authored Feb 27, 2024
1 parent 4b36b91 commit d2b41f0
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/test-android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,15 @@ jobs:
examples/api/src-tauri
- name: build CLI
run: |
cargo build --manifest-path ./tooling/cli/Cargo.toml
echo "$PWD/tooling/cli/target/debug" >> $GITHUB_PATH
run: cargo build --manifest-path ./tooling/cli/Cargo.toml

- name: move CLI to cargo bin dir
if: matrix.os != "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"
run: mv ./tooling/cli/target/debug/cargo-tauri.exe $HOME/.cargo/bin

- name: build Tauri API
working-directory: ./tooling/api
Expand Down

0 comments on commit d2b41f0

Please sign in to comment.