File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed
Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 11var "versions" {
22 prod = " v0.1.1"
3- release = " v0.1.45 -beta"
3+ release = " v0.1.51 -beta"
44}
55
66temp "version.go" {
Original file line number Diff line number Diff line change @@ -91,13 +91,13 @@ func (d Docker) CreateBuildArgs() []docker.BuildArg {
9191}
9292
9393func (d Docker ) CreateAuthConfig () docker.AuthConfiguration {
94- auth := docker.AuthConfiguration {
95- //Username: "",
96- //Password: "",
97- }
94+ auth := docker.AuthConfiguration {}
95+ // insecure registry
9896 if d .NotPrivate == true || reflect .DeepEqual (d .Auth , (Docker {}).Auth ) {
9997 auth .RegistryToken = " "
100- return auth
98+ } else {
99+ auth .Password = d .Auth .Password
100+ auth .Username = d .Auth .Username
101101 }
102102
103103 return auth
Original file line number Diff line number Diff line change 11package main
22
3- var RELEASE_VERSION = "v0.1.45 -beta"
3+ var RELEASE_VERSION = "v0.1.5 -beta"
You can’t perform that action at this time.
0 commit comments