Trying Stuff
All checks were successful
Create and publish a Docker image / build-and-push-image (push) Successful in 1m19s

This commit is contained in:
Alexandre Bruyant 2024-01-06 22:08:29 +01:00
parent 44b7876f7a
commit dad789954f

View File

@ -10,6 +10,7 @@ import (
"os" "os"
"path/filepath" "path/filepath"
"strings" "strings"
"time"
"github.com/sethvargo/go-githubactions" "github.com/sethvargo/go-githubactions"
) )
@ -112,6 +113,8 @@ func main() {
} }
}() }()
time.Sleep(10 * time.Second)
githubactions.Infof("Calling node API") githubactions.Infof("Calling node API")
client := &http.Client{} client := &http.Client{}
res, err := client.Do(req) res, err := client.Do(req)