We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a43eee commit 88c50d4Copy full SHA for 88c50d4
1 file changed
ci/main.go
@@ -8,6 +8,7 @@ import (
8
"context"
9
"dagger/ci/internal/dagger"
10
"fmt"
11
+ "os"
12
)
13
14
type Ci struct{}
@@ -62,6 +63,8 @@ func (m *Ci) Publish(
62
63
64
reference := fmt.Sprintf("%s/%s:%s", registry, repository, imageTag)
65
66
+ fmt.Fprintf(os.Stdout, registry)
67
+ fmt.Fprintf(os.Stdout, reference)
68
// publish to registry
69
ref, err := container.
70
WithRegistryAuth(registry, username, password).
0 commit comments