From bf83f40ec546ab95b43c213982e81b69da194e0e Mon Sep 17 00:00:00 2001 From: Luke Street Date: Tue, 14 Apr 2026 19:21:13 -0600 Subject: [PATCH] Update rustup command for iOS --- .github/workflows/build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8e7e0eba2f..ec1134f641 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -106,7 +106,9 @@ jobs: - name: Install Rust iOS target if: matrix.platform == 'ios' - run: rustup target add aarch64-apple-ios + run: | + rustup toolchain install stable + rustup target add aarch64-apple-ios - name: Install Rust tvOS target if: matrix.platform == 'tvos'