summaryrefslogtreecommitdiffstats
path: root/main.go
diff options
context:
space:
mode:
authorRyan <me@hackerc.at>2022-03-29 11:37:38 +0200
committerGitHub <noreply@github.com>2022-03-29 11:37:38 +0200
commitde8197980079129395c67b1e2865cff8be4ebca8 (patch)
treebd66423585bc1c029e893f1e5790154babcbac16 /main.go
parentbuild(deps): bump actions/cache from 2 to 3 (#1082) (diff)
downloadforgejo-act-de8197980079129395c67b1e2865cff8be4ebca8.tar.xz
forgejo-act-de8197980079129395c67b1e2865cff8be4ebca8.zip
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>
Diffstat (limited to 'main.go')
-rw-r--r--main.go2
1 files changed, 1 insertions, 1 deletions
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()