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