test-go-action
/
main.go
15 строк · 338.0 Байт
1package main2
3import (4"fmt"5gha "github.com/sethvargo/go-githubactions"6"os"7)
8
9func main() {10username := gha.GetInput("username")11fmt.Printf("username is %s\n", username)12projectName := os.Getenv("GITHUB_ACTION_REPOSITORY")13fmt.Printf("Hello, " + projectName)14//gha.SetOutput("time", time.Now().Format("2006-01-02 15:04:05"))15}
16