Add action.yml
This commit is contained in:
commit
0dfb473d3a
1 changed files with 24 additions and 0 deletions
24
action.yml
Normal file
24
action.yml
Normal file
|
@ -0,0 +1,24 @@
|
|||
name: asdf install
|
||||
description: Install your versioned tools with asdf
|
||||
author: Victor Borja <vborja@apache.org>
|
||||
runs:
|
||||
using: node20
|
||||
main: main.js
|
||||
inputs:
|
||||
tool_versions:
|
||||
description:
|
||||
If present, this value will be written to the .tool-versions file.
|
||||
required: false
|
||||
before_install:
|
||||
description:
|
||||
Bash script to run after plugins are installed but before `asdf install`.
|
||||
eg, to install npm keyring
|
||||
required: false
|
||||
asdf_branch:
|
||||
description: asdf branch to clone
|
||||
required: false
|
||||
default: master
|
||||
skip_install:
|
||||
description: setup env without installing asdf
|
||||
required: false
|
||||
default: false
|
Loading…
Reference in a new issue