mirror of
https://gitea.com/gitea/act_runner.git
synced 2026-03-02 18:00:18 +00:00
* Replace nektos/act imports with actions-oss/act-cli * Update go.mod to reference new repo * Fix goimports "not properly formatted" complaints. Replacing the imports left some out of alphabetical order.
38 lines
543 B
Go
38 lines
543 B
Go
package main
|
|
|
|
import (
|
|
"context"
|
|
_ "embed"
|
|
"os"
|
|
"os/signal"
|
|
"syscall"
|
|
|
|
"github.com/actions-oss/act-cli/cmd"
|
|
)
|
|
|
|
//go:embed VERSION
|
|
var version string
|
|
|
|
func main() {
|
|
ctx := context.Background()
|
|
ctx, cancel := context.WithCancel(ctx)
|
|
|
|
// trap Ctrl+C and call cancel on the context
|
|
c := make(chan os.Signal, 1)
|
|
signal.Notify(c, os.Interrupt, syscall.SIGTERM)
|
|
defer func() {
|
|
signal.Stop(c)
|
|
cancel()
|
|
}()
|
|
go func() {
|
|
select {
|
|
case <-c:
|
|
cancel()
|
|
case <-ctx.Done():
|
|
}
|
|
}()
|
|
|
|
// run the command
|
|
cmd.Execute(ctx, version)
|
|
}
|