fix: Add double string
All checks were successful
Test Go Action / use-go-action (push) Successful in 1m37s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 7s

This commit is contained in:
root 2025-06-28 10:49:44 +03:00
parent e4656b11be
commit c793b801bf

View File

@ -10,6 +10,7 @@ import (
func main() {
username := gha.GetInput("username")
fmt.Printf("username is %s\n", username)
fmt.Printf("username is %s\n", username)
gha.SetOutput("time", time.Now().Format("2024-01-02 15:04:05"))
}