INNER CODE UNIT · Go

deployLuaDocs

bliporg/blip · ci/lua_docs_deploy_prod/main.go:142

func deployLuaDocs() error {
	var err error

	// login to docker registry
	if err = dockerRegistryLogin(); err != nil {
		return err
	}
	defer dockerRegistryLogout()

	// Get background context
	ctx := context.Background()

	// Initialize dagger client
	client, err := dagger.Connect(ctx,
		dagger.WithLogOutput(os.Stdout),    // output the logs to the standard output
		dagger.WithWorkdir(REPO_ROOT_PATH), // repository root directory
	)
	if err != nil {

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…