From 0d9fda716b6a86c3d4d04bf0d235f506d2cc2e54 Mon Sep 17 00:00:00 2001 From: Boshen Date: Sun, 12 Mar 2023 13:50:25 +0800 Subject: [PATCH] ci: build nightly rust-src for release --- .github/workflows/release_cli.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release_cli.yaml b/.github/workflows/release_cli.yaml index 767cee30b..281cde081 100644 --- a/.github/workflows/release_cli.yaml +++ b/.github/workflows/release_cli.yaml @@ -78,7 +78,9 @@ jobs: - uses: actions/checkout@v3 - name: Install Rust toolchain - run: rustup target add ${{ matrix.target }} + run: | + rustup target add ${{ matrix.target }} + rustup component add rust-src --toolchain nightly - name: Install arm64 toolchain if: matrix.code-target == 'linux-arm64'