From 2b80a5d09796d92b9094880489b22e934a545a54 Mon Sep 17 00:00:00 2001 From: "Alex Lau (AvengerMoJo)" Date: Sun, 8 Oct 2023 17:32:06 +0800 Subject: [PATCH] Fix hello script with env:GITEA_OUTPUT Signed-off-by: Alex Lau (AvengerMoJo) --- hello.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hello.sh b/hello.sh index 0f0d13c..d786679 100644 --- a/hello.sh +++ b/hello.sh @@ -3,5 +3,5 @@ echo "Hello $1" time=$(date) echo "time=$time" >> $env:GITHUB_OUTPUT -echo "time=$time" >> $GITEA_OUTPUT +echo "time=$time" >> $env:GITEA_OUTPUT