From ae5c8efaa063fee81b66074a222438a2346c6a76 Mon Sep 17 00:00:00 2001 From: "Marcel S. Henselin" Date: Thu, 16 Apr 2026 11:16:16 +0200 Subject: [PATCH] chore: use Dockerfile --- main.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main.go b/main.go index db5f1cb..656fce5 100644 --- a/main.go +++ b/main.go @@ -4,6 +4,7 @@ import ( "bytes" "fmt" "net/http" + "os" "text/template" "github.com/sethvargo/go-githubactions" @@ -116,6 +117,7 @@ func main() { fmt.Println("response Status:", resp.Status) if resp.StatusCode != http.StatusOK { fmt.Printf("response: %+v\n", resp) + os.Exit(1) } }