Provide rustc version as a workflow output
This commit is contained in:
@@ -7,6 +7,11 @@ inputs:
|
|||||||
description: Rust toolchain specification -- see https://rust-lang.github.io/rustup/concepts/toolchains.html#toolchain-specification
|
description: Rust toolchain specification -- see https://rust-lang.github.io/rustup/concepts/toolchains.html#toolchain-specification
|
||||||
required: true
|
required: true
|
||||||
|
|
||||||
|
outputs:
|
||||||
|
version:
|
||||||
|
description: Version as reported by `rustc --version`
|
||||||
|
value: ${{steps.rustc-version.outputs.version}}
|
||||||
|
|
||||||
runs:
|
runs:
|
||||||
using: composite
|
using: composite
|
||||||
steps:
|
steps:
|
||||||
@@ -15,5 +20,8 @@ runs:
|
|||||||
shell: bash
|
shell: bash
|
||||||
- run: rustup default ${{inputs.toolchain}}
|
- run: rustup default ${{inputs.toolchain}}
|
||||||
shell: bash
|
shell: bash
|
||||||
|
- id: rustc-version
|
||||||
|
run: echo "::set-output name=version::$(rustc --version)"
|
||||||
|
shell: bash
|
||||||
- run: rustc --version
|
- run: rustc --version
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|||||||
Reference in New Issue
Block a user