From 55a4872891b4b43cba59ef8b2577436e7f6aa4a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Roth?= Date: Thu, 14 Nov 2024 22:36:06 +0100 Subject: [PATCH] add github action for aptly upload --- action.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 action.yml diff --git a/action.yml b/action.yml new file mode 100644 index 00000000..e3d29fa6 --- /dev/null +++ b/action.yml @@ -0,0 +1,14 @@ +name: 'Hello World JS Action' +description: 'Greet someone and record the time' +inputs: + directory: + description: 'directory with debian packages' + required: true + default: 'build' +#outputs: +# time: +# description: 'The time we greeted you' +runs: + using: 'debian:bookworm-slim' + main: 'aptly-upload.sh' +