mirror of
https://github.com/dtolnay/rust-toolchain.git
synced 2024-11-13 04:56:33 +02:00
18 lines
523 B
YAML
18 lines
523 B
YAML
|
name: rustup
|
||
|
author: David Tolnay
|
||
|
description: Install the Rust toolchain
|
||
|
|
||
|
inputs:
|
||
|
toolchain:
|
||
|
description: Rust toolchain specification -- see https://rust-lang.github.io/rustup/concepts/toolchains.html#toolchain-specification
|
||
|
required: true
|
||
|
|
||
|
runs:
|
||
|
using: composite
|
||
|
steps:
|
||
|
- name: rustup toolchain install ${{inputs.toolchain}}
|
||
|
run: rustup toolchain install ${{inputs.toolchain}} --profile minimal --no-self-update
|
||
|
shell: bash
|
||
|
- run: rustup default ${{inputs.toolchain}}
|
||
|
shell: bash
|