-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathaction.yml
More file actions
27 lines (27 loc) · 867 Bytes
/
action.yml
File metadata and controls
27 lines (27 loc) · 867 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
name: 'rust-cargo-make'
description:
'Install `cargo-make` by downloading the executable (faster than `cargo
install cargo-make`, seconds vs minutes).'
author: 'davidB'
branding:
icon: 'arrow-down-circle'
color: 'gray-dark'
inputs:
version:
description: 'version(s) of cargo-make to install (eg. "0.22.2", "latest")'
default: 'latest'
fallback_version:
description:
'version of cargo-make to install if "latest" requested but it could not
be found'
default: '0.37.24'
github_token:
description:
'Authentication token to use when connecting to the GitHub API. Token used
to search the latest version, defining token reduces probability of
rejection when requested github, it can be defined as
`secrets.GITHUB_TOKEN`'
default: ${{ github.token }}
runs:
using: 'node24'
main: 'dist/index.js'