From 0dfb473d3a22114f554236a0fd5d1c33694ef677 Mon Sep 17 00:00:00 2001 From: hamcha Date: Sat, 30 Nov 2024 15:36:09 +0000 Subject: [PATCH] Add action.yml --- action.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 action.yml diff --git a/action.yml b/action.yml new file mode 100644 index 0000000..ca2c2d4 --- /dev/null +++ b/action.yml @@ -0,0 +1,24 @@ +name: asdf install +description: Install your versioned tools with asdf +author: Victor Borja +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 \ No newline at end of file