grim/convey

convey/import is new in convey 0.15.0 and not on our current build agents
package podman
import (
"errors"
)
var (
// common errors
ErrNoImage = errors.New("no image specified")
// build errors
ErrNoContainerfile = errors.New("no container file specified")
ErrContextOutsideOfWorkspace = errors.New("context is outside of the workspace")
// login/logout errors
ErrNoRegistry = errors.New("no registry specified")
ErrNoUsername = errors.New("no username provided")
ErrNoPassword = errors.New("no password provided")
// pull/push errors
ErrNoTags = errors.New("no tags specified")
// tag errors
ErrNoTargets = errors.New("no targets specified")
)