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