5 lines
79 B
Bash
5 lines
79 B
Bash
#!/bin/sh -l
|
|
|
|
echo "Hello $1"
|
|
time=$(date)
|
|
echo "time=$time" >> $GITHUB_OUTPUT
|