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