From de8197980079129395c67b1e2865cff8be4ebca8 Mon Sep 17 00:00:00 2001 From: Ryan Date: Tue, 29 Mar 2022 11:37:38 +0200 Subject: [PATCH] fix: set default version string (#1070) for when people don't specify version via -ldflags Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 2169056..14ed63d 100644 --- a/main.go +++ b/main.go @@ -8,7 +8,7 @@ import ( "github.com/nektos/act/cmd" ) -var version string +var version = "v0.2.27-dev" // Manually bump after tagging next release func main() { ctx := context.Background()