We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03aaf6b commit 2577a19Copy full SHA for 2577a19
action.yml
@@ -108,10 +108,15 @@ runs:
108
# Install the toolchain as specified in the file
109
# Might break at some point: https://github.com/rust-lang/rustup/issues/1397
110
rustup show
111
+ rustup component add ${components//,/ }
112
+ rustup target add ${targets//,/ }
113
else
114
rustup toolchain install ${{inputs.toolchain}}${{steps.flags.outputs.targets}}${{steps.flags.outputs.components}} --profile minimal${{steps.flags.outputs.downgrade}} --no-self-update
115
rustup default ${{inputs.toolchain}}
116
fi
117
+ env:
118
+ targets: ${{inputs.target}}
119
+ components: ${{inputs.components}}
120
shell: bash
121
122
- name: Print installed versions
0 commit comments