From 7d93c6d197a6cd715e7bcf99da27cf31419c4916 Mon Sep 17 00:00:00 2001 From: Jan Tuomi Date: Wed, 21 Aug 2019 13:14:43 +0300 Subject: Add Dockerfile --- action-a/Dockerfile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 action-a/Dockerfile (limited to 'action-a') diff --git a/action-a/Dockerfile b/action-a/Dockerfile new file mode 100644 index 0000000..58dbd77 --- /dev/null +++ b/action-a/Dockerfile @@ -0,0 +1,13 @@ +FROM debian:9.5-slim + +LABEL "com.github.actions.name"="Hello World" +LABEL "com.github.actions.description"="Write arguments to the standard output" +LABEL "com.github.actions.icon"="mic" +LABEL "com.github.actions.color"="purple" + +LABEL "repository"="http://github.com/octocat/hello-world" +LABEL "homepage"="http://github.com/actions" +LABEL "maintainer"="Octocat " + +ADD entrypoint.sh /entrypoint.sh +ENTRYPOINT ["/entrypoint.sh"] -- cgit v1.3 From 42cdb4cfd8f8501bf61d25b85d0c72de36c4b860 Mon Sep 17 00:00:00 2001 From: Jan Tuomi Date: Wed, 21 Aug 2019 13:16:08 +0300 Subject: Add entrypoint.sh --- action-a/entrypoint.sh | 3 +++ 1 file changed, 3 insertions(+) create mode 100755 action-a/entrypoint.sh (limited to 'action-a') diff --git a/action-a/entrypoint.sh b/action-a/entrypoint.sh new file mode 100755 index 0000000..d262d66 --- /dev/null +++ b/action-a/entrypoint.sh @@ -0,0 +1,3 @@ +#!/bin/sh -l + +sh -c "echo Hello world my name is $MY_NAME" -- cgit v1.3 From 6690e87c9c091bc189abd85ae841345fed8efc48 Mon Sep 17 00:00:00 2001 From: Jan Tuomi Date: Wed, 21 Aug 2019 13:47:53 +0300 Subject: Poke poke --- action-a/thing | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 action-a/thing (limited to 'action-a') diff --git a/action-a/thing b/action-a/thing new file mode 100644 index 0000000..e69de29 -- cgit v1.3