From 654f92698f526ed75071ec7fc37658085262c31a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cibrahim0814=E2=80=9D?= Date: Tue, 6 Aug 2019 09:26:39 -0700 Subject: [PATCH] add entrypoint script --- action.yml | 8 +------- entrypoint.sh | 1 + 2 files changed, 2 insertions(+), 7 deletions(-) create mode 100644 entrypoint.sh diff --git a/action.yml b/action.yml index 291ddb0..5a03a3c 100644 --- a/action.yml +++ b/action.yml @@ -19,10 +19,4 @@ branding: icon: 'umbrella' runs: using: 'node12' - main: | - curl -s https://codecov.io/bash | bash -s -- \ - # -f ${inputs.file} \ - # -t ${inputs.token} \ - # -y ${inputs.conf} \ - # -F ${inputs.flags} \ - # -Z || echo 'Codecov upload failed' \ No newline at end of file + main: 'entrypoint.sh' \ No newline at end of file diff --git a/entrypoint.sh b/entrypoint.sh new file mode 100644 index 0000000..2fcee71 --- /dev/null +++ b/entrypoint.sh @@ -0,0 +1 @@ +echo "Hello World" \ No newline at end of file