mirror of
https://github.com/actions-rs/cargo.git
synced 2024-11-14 21:46:34 +02:00
0e77f895e3
need to tag the release, though, to get a version number
24 lines
532 B
YAML
24 lines
532 B
YAML
name: 'rust-cargo'
|
|
description: 'Run cargo command'
|
|
author: 'actions-rs team'
|
|
branding:
|
|
icon: play-circle
|
|
color: black
|
|
inputs:
|
|
command:
|
|
description: Cargo command to run (ex. `check` or `build`)
|
|
required: true
|
|
toolchain:
|
|
description: Toolchain to use (without the `+` sign, ex. `nightly`)
|
|
required: false
|
|
args:
|
|
description: Arguments for the cargo command
|
|
required: false
|
|
use-cross:
|
|
description: Use cross instead of cargo
|
|
default: false
|
|
|
|
runs:
|
|
using: 'node20'
|
|
main: 'dist/index.js'
|
|
|