update import path

This commit is contained in:
Christopher Homberger
2026-02-22 20:54:58 +01:00
parent 9fd95d203f
commit 3413919161
75 changed files with 233 additions and 164 deletions

View File

@@ -0,0 +1 @@
0.4.0

View File

@@ -0,0 +1,19 @@
package main
import (
_ "embed"
"gitea.com/gitea/act_runner/cmd"
"gitea.com/gitea/act_runner/pkg/common"
)
//go:embed VERSION
var version string
func main() {
ctx, cancel := common.CreateGracefulJobCancellationContext()
defer cancel()
// run the command
cmd.Execute(ctx, version)
}