Compare commits
3 commits
Author | SHA1 | Date | |
---|---|---|---|
87a5a35b8f | |||
0a9fa2b000 | |||
34255d6260 |
2 changed files with 2 additions and 1 deletions
|
@ -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: 'podman'
|
using: 'docker'
|
||||||
image: 'Dockerfile'
|
image: 'Dockerfile'
|
||||||
args:
|
args:
|
||||||
- ${{ inputs.who-to-greet }}
|
- ${{ inputs.who-to-greet }}
|
||||||
|
|
1
entrypoint.sh
Normal file → Executable file
1
entrypoint.sh
Normal file → Executable file
|
@ -1,5 +1,6 @@
|
||||||
#!/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
|
||||||
|
|
Loading…
Add table
Reference in a new issue