setup-rust-action/action.yml

20 lines
533 B
YAML
Raw Normal View History

2019-08-16 01:00:14 +00:00
name: 'Set up a Rust toolchain'
description: 'Install a specific Rust toolchain and add it to the PATH'
2019-08-15 17:29:30 +00:00
author: 'Héctor Ramón'
inputs:
rust-version:
2019-08-16 01:38:53 +00:00
description: 'The toolchain name, such as stable, nightly, or 1.8.0'
default: 'stable'
2019-09-04 10:58:20 +00:00
components:
description: 'The toolchain components to install, comma-separated'
default: ''
2019-09-18 15:08:24 +00:00
targets:
description: 'The toolchain targets to add, comma-separated'
default: ''
2019-08-15 17:16:59 +00:00
runs:
using: 'node12'
main: 'lib/main.js'
2019-08-16 01:00:14 +00:00
branding:
icon: 'download'
color: 'blue'