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