mirror of
https://gitea.com/gitea/runner.git
synced 2026-08-16 16:57:45 +00:00
099af5e6a8
Signed-off-by: hackercat <me@hackerc.at>
9 lines
150 B
Bash
Executable File
9 lines
150 B
Bash
Executable File
#!/bin/sh -l
|
|
|
|
echo "Hello $1"
|
|
time=$(date)
|
|
echo ::set-output name=time::$time
|
|
echo ::set-output name=whoami::$WHOAMI
|
|
|
|
echo "SOMEVAR=$1" >>$GITHUB_ENV
|