From 9c385aeeb6e6a20056be708686fcfffeea821dc5 Mon Sep 17 00:00:00 2001 From: Tom - Henry Coursow Date: Thu, 27 Jul 2023 19:32:36 +0200 Subject: [PATCH] =?UTF-8?q?action.yml=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- action.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 action.yml diff --git a/action.yml b/action.yml new file mode 100644 index 0000000..39c2678 --- /dev/null +++ b/action.yml @@ -0,0 +1,17 @@ +# +# To be able to use this action (with Gitea and Act Runner), +# this action.yml file has to be placed in the root of the repository. +# It is also important that a Git TAG is created (for example 'v1') +# Then workflows can use this action like this: +# 'using: https://gitea.coursow.de/Test-Playground/actions-custom-js@v1' +# + +# Name and Description of the Action (Like displayed in GitHub Marketplace Overview) +name: 'Deploy to AWS S3' +description: 'Deploys a Node-JS App to AWS S3' + +runs: + using: 'node16' # Must be 'nodeXX' for a custom js action + main: 'main.js' # The JS File to execute which will handle action processing + # pre: 'setup.js' # Will be executed before the main action execution + # post: 'cleanup.js' # Will be executed after main action execution \ No newline at end of file