diff options
author | Ryan <me@hackerc.at> | 2022-03-29 11:37:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-29 11:37:38 +0200 |
commit | de8197980079129395c67b1e2865cff8be4ebca8 (patch) | |
tree | bd66423585bc1c029e893f1e5790154babcbac16 /main.go | |
parent | build(deps): bump actions/cache from 2 to 3 (#1082) (diff) | |
download | forgejo-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.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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() |