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