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