mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-04-28 08:19:47 +00:00
Fixed Tauri setup when it is already present using a cache
This commit is contained in:
parent
d619cc0046
commit
a4f1aff2f3
6
.github/workflows/build-and-release.yml
vendored
6
.github/workflows/build-and-release.yml
vendored
@ -123,7 +123,11 @@ jobs:
|
||||
|
||||
- name: Setup Tauri
|
||||
run: |
|
||||
cargo install tauri-cli
|
||||
if ! cargo tauri --version > /dev/null 2>&1; then
|
||||
cargo install tauri-cli
|
||||
else
|
||||
echo "Tauri is already installed"
|
||||
fi
|
||||
|
||||
- name: Build Tauri project
|
||||
run: |
|
||||
|
Loading…
Reference in New Issue
Block a user