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