From dd3c886bcd068901725fdcac85b859025db3875a Mon Sep 17 00:00:00 2001 From: Booklordofthedings Date: Wed, 16 Oct 2024 15:31:58 +0200 Subject: [PATCH] added basic action from yaml --- action-yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 action-yaml diff --git a/action-yaml b/action-yaml new file mode 100644 index 0000000..702393f --- /dev/null +++ b/action-yaml @@ -0,0 +1,18 @@ +--- +name: "Setup Beef" +description: "Set up the latest Beef nightly and add BeefBuild to the PATH." +author: "Booklordofthedings" +inputs: +outputs: + cache-hit: + description: "A boolean value to indicate a cache entry was found" + beef-path: + description: "The absolute path to the BeefBuild executable." +runs: + using: 'node20' + main: 'dist/setup/index.js' + post: 'dist/cache-save/index.js' + post-if: success() +branding: + icon: 'code' + color: 'yellow' \ No newline at end of file