From b64aa37cf48e145385f7d924fbb6e6ae712b719d Mon Sep 17 00:00:00 2001 From: glen rosales <32515327+GlenRosales@users.noreply.github.com> Date: Thu, 10 Sep 2020 22:21:27 -0500 Subject: [PATCH 1/2] Create Dockerfile --- action-a/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 action-a/Dockerfile diff --git a/action-a/Dockerfile b/action-a/Dockerfile new file mode 100644 index 0000000..2a11685 --- /dev/null +++ b/action-a/Dockerfile @@ -0,0 +1,2 @@ +Hello would +You like to go From fd423fabcb07a3722d724c8152051a6d8379272c Mon Sep 17 00:00:00 2001 From: glen rosales <32515327+GlenRosales@users.noreply.github.com> Date: Thu, 10 Sep 2020 22:25:16 -0500 Subject: [PATCH 2/2] Create entrypoint.sh --- action-a/entrypoint.sh | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 action-a/entrypoint.sh diff --git a/action-a/entrypoint.sh b/action-a/entrypoint.sh new file mode 100644 index 0000000..7d3abef --- /dev/null +++ b/action-a/entrypoint.sh @@ -0,0 +1,3 @@ +#!/bin/sh -l + +sh -c "echo Hello world my name is $INPUT_MY_NAME"