Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/claude.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ jobs:
- name: Install Tauri CLI
run: |
if ! command -v cargo-tauri &> /dev/null; then
cargo install tauri-cli
CARGO_CFG_TARGET_OS=linux cargo install tauri-cli
else
echo "Tauri CLI already installed"
fi
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/desktop-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,8 @@ jobs:

- name: Install Tauri CLI
run: cargo install tauri-cli
env:
CARGO_CFG_TARGET_OS: linux

- name: Build Tauri App (Linux)
working-directory: ./frontend
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/mobile-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ jobs:

- name: Install Tauri CLI
run: cargo install tauri-cli
env:
# Workaround for getrandom v0.2.16 (https://github.com/rust-random/getrandom/issues/641)
# cargo install builds for the host; on macOS runners target_os is "macos"
CARGO_CFG_TARGET_OS: macos

- name: Set up API Key
run: |
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/testflight-on-comment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,10 @@ jobs:

- name: Install Tauri CLI
run: cargo install tauri-cli
env:
# Workaround for getrandom v0.2.16 (https://github.com/rust-random/getrandom/issues/641)
# cargo install builds for the host; on macOS runners target_os is "macos"
CARGO_CFG_TARGET_OS: macos

- name: Set up API Key
run: |
Expand Down
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
};

# Use specific rust version required by Tauri
rustToolchain = pkgs.rust-bin.stable."1.78.0".default.override {
rustToolchain = pkgs.rust-bin.stable."1.85.0".default.override {
extensions = [ "rust-src" ];
};
in
Expand Down
Loading