7 lines
87 B
Bash
Executable file
7 lines
87 B
Bash
Executable file
#!/bin/sh -l
|
|
|
|
echo "Hello $1"
|
|
time=$(date)
|
|
echo "time=$time" >> $GITHUB_OUTPUT
|
|
|
|
exit 0
|