mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-20 18:41:16 -03:00
26 lines
615 B
YAML
26 lines
615 B
YAML
name: Stable Rust Toolchain
|
|
|
|
on:
|
|
workflow_call:
|
|
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:
|
|
# also update in rust-toolchain.toml
|
|
- uses: dtolnay/rust-toolchain@1.89.0
|
|
with:
|
|
targets: ${{ inputs.targets }}
|
|
components: ${{ inputs.components }}
|
|
- run: rm rust-toolchain.toml
|
|
shell: sh
|