add forgeinstance

This commit is contained in:
Lunny Xiao
2022-10-16 23:51:53 +08:00
committed by Jason Song
parent 9c7d2be7c6
commit 378966e45f
7 changed files with 28 additions and 22 deletions

View File

@ -33,7 +33,7 @@ func initLogging(cfg config.Config) {
}
func Execute(ctx context.Context) {
task := runtime.NewTask(0, nil)
task := runtime.NewTask("gitea", 0, nil)
// ./act_runner
rootCmd := &cobra.Command{
@ -54,7 +54,7 @@ func Execute(ctx context.Context) {
Aliases: []string{"daemon"},
Use: "execute runner daemon",
Args: cobra.MaximumNArgs(1),
RunE: runDaemon(ctx, task),
RunE: runDaemon(ctx, task.Input.EnvFile),
}
// add all command
rootCmd.AddCommand(daemonCmd)