mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-04-19 23:21:15 -03:00
21 lines
473 B
YAML
21 lines
473 B
YAML
name: Stable Rust Toolchain
|
|
|
|
inputs:
|
|
targets:
|
|
description: Comma-separated list of target triples to install for this toolchain
|
|
required: false
|
|
components:
|
|
description: Comma-separated list of components to be additionally installed
|
|
required: false
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- uses: dtolnay/rust-toolchain@1.89
|
|
with:
|
|
targets: ${{ inputs.targets }}
|
|
components: ${{ inputs.components }}
|