releaser/shuttletask/ci.go

14 lines
183 B
Go
Raw Normal View History

2023-04-08 12:34:57 +02:00
package main
import (
"context"
"log"
2023-04-08 12:41:16 +02:00
"os/exec"
2023-04-08 12:34:57 +02:00
)
func Ci(ctx context.Context) error {
log.Println("CI")
2023-04-08 12:41:16 +02:00
return exec.Command("shuttle", "--skip-pull", "run", "build").Run()
2023-04-08 12:34:57 +02:00
}