diff --git a/.github/workflows/beta-release.yml b/.github/workflows/beta-release.yml index af261350..08deeb56 100644 --- a/.github/workflows/beta-release.yml +++ b/.github/workflows/beta-release.yml @@ -89,11 +89,14 @@ jobs: - name: Install dependencies run: cd apps/frontend && npm ci + - name: Install Rust toolchain (for building native Python packages) + uses: dtolnay/rust-toolchain@stable + - name: Cache bundled Python uses: actions/cache@v4 with: path: apps/frontend/python-runtime - key: python-bundle-${{ runner.os }}-x64-3.12.8 + key: python-bundle-${{ runner.os }}-x64-3.12.8-rust restore-keys: | python-bundle-${{ runner.os }}-x64- diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 26bfba0a..c6b6ddc9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -43,11 +43,14 @@ jobs: - name: Install dependencies run: cd apps/frontend && npm ci + - name: Install Rust toolchain (for building native Python packages) + uses: dtolnay/rust-toolchain@stable + - name: Cache bundled Python uses: actions/cache@v4 with: path: apps/frontend/python-runtime - key: python-bundle-${{ runner.os }}-x64-3.12.8 + key: python-bundle-${{ runner.os }}-x64-3.12.8-rust restore-keys: | python-bundle-${{ runner.os }}-x64-