Skip to content

Commit 79d5c79

Browse files
Change Rust component install in release workflow
1 parent bbef156 commit 79d5c79

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,10 @@ jobs:
4040
- uses: actions/checkout@v4
4141

4242
- name: Set up Rust toolchain
43-
run: rustup toolchain install stable --no-self-update --profile minimal --component rust-std-${{ matrix.target }}
43+
run: |
44+
rustup toolchain install stable --no-self-update --profile minimal
45+
rustup component add llvm-tools-preview --toolchain stable
46+
rustup component add rust-std-${{ matrix.target }} --toolchain stable
4447
4548
- name: Set up Rust cache
4649
uses: swatinem/rust-cache@v2

0 commit comments

Comments
 (0)