diff --git a/action.yml b/action.yml index 5605883..782c830 100644 --- a/action.yml +++ b/action.yml @@ -10,7 +10,7 @@ outputs: time: # id of output description: 'The time we greeted you' runs: - using: 'podman' + using: 'docker' image: 'Dockerfile' args: - ${{ inputs.who-to-greet }} diff --git a/entrypoint.sh b/entrypoint.sh old mode 100644 new mode 100755 index 3fee027..70a0dc3 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -1,5 +1,6 @@ #!/bin/sh -l echo "Hello $1" +env time=$(date) echo "time=$time" >> $GITHUB_OUTPUT