Compare commits

...

3 commits
v3 ... main

Author SHA1 Message Date
87a5a35b8f Update entrypoint.sh 2024-12-11 17:14:25 +00:00
0a9fa2b000 test 2024-12-11 14:28:41 +01:00
34255d6260 Update action.yml 2024-12-10 20:22:09 +00:00
2 changed files with 2 additions and 1 deletions

View file

@ -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 }}

1
entrypoint.sh Normal file → Executable file
View file

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