13 lines
200 B
Go
13 lines
200 B
Go
package main
|
|
|
|
import (
|
|
"github.com/sethvargo/go-githubactions"
|
|
)
|
|
|
|
func main() {
|
|
path := githubactions.GetInput("path_to_add")
|
|
if path == "" {
|
|
githubactions.Fatalf("Missing: path_to_add")
|
|
}
|
|
}
|