Compare commits

..

No commits in common. "main" and "v3" have entirely different histories.
main ... v3

2 changed files with 1 additions and 2 deletions

View file

@ -10,7 +10,7 @@ outputs:
time: # id of output time: # id of output
description: 'The time we greeted you' description: 'The time we greeted you'
runs: runs:
using: 'docker' using: 'podman'
image: 'Dockerfile' image: 'Dockerfile'
args: args:
- ${{ inputs.who-to-greet }} - ${{ inputs.who-to-greet }}

1
entrypoint.sh Executable file → Normal file
View file

@ -1,6 +1,5 @@
#!/bin/sh -l #!/bin/sh -l
echo "Hello $1" echo "Hello $1"
env
time=$(date) time=$(date)
echo "time=$time" >> $GITHUB_OUTPUT echo "time=$time" >> $GITHUB_OUTPUT