You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Because the project is tagged v3 and has a go.mod file, Go expects the module path to include the major version:
I can appreciate that you ship this project as Helm + Docker images, but I'd like to incorporate the Go API into my deploy process, which involves starting with go get
To Reproduce
⮀ go get github.com/mittwald/kubernetes-secret-generator/pkg/apis/secretgenerator/[email protected]
go: github.com/mittwald/kubernetes-secret-generator/pkg/apis/secretgenerator/[email protected]: github.com/mittwald/[email protected]: invalid version: module contains a go.mod file, so module path must match major version ("github.com/mittwald/kubernetes-secret-generator/v3")
The text was updated successfully, but these errors were encountered:
Describe the bug
Because the project is tagged v3 and has a
go.mod
file, Go expects the module path to include the major version:I can appreciate that you ship this project as Helm + Docker images, but I'd like to incorporate the Go API into my deploy process, which involves starting with
go get
To Reproduce
The text was updated successfully, but these errors were encountered: