We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b843b88 commit dd65588Copy full SHA for dd65588
.github/workflows/release.yaml
@@ -63,15 +63,16 @@ jobs:
63
64
- name: Install toolchain dependencies
65
if: matrix.container == 'ubuntu:18.04'
66
- run: apt-get update && apt-get install -y build-essential curl
+ shell: bash
67
+ run: |
68
+ apt-get update && apt-get install -y build-essential curl
69
+ curl --proto '=https' --tlsv1.2 "https://sh.rustup.rs" | sh -s -- --default-toolchain none -y
70
71
- name: Install Rust toolchain
- uses: actions-rs/toolchain@v1
- with:
- toolchain: stable
72
- target: ${{ matrix.target }}
73
- components: rust-src
74
- override: true
+ rustup update --no-self-update stable
+ rustup target add ${{ matrix.target }}
75
+ rustup component add rust-src
76
77
- name: Install Node.js
78
uses: actions/setup-node@v1
0 commit comments