summaryrefslogtreecommitdiffstats
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go37
1 files changed, 37 insertions, 0 deletions
diff --git a/main.go b/main.go
new file mode 100644
index 0000000..37b0fec
--- /dev/null
+++ b/main.go
@@ -0,0 +1,37 @@
+package main
+
+import (
+ "context"
+ _ "embed"
+ "os"
+ "os/signal"
+ "syscall"
+
+ "github.com/nektos/act/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)
+}