grim/convey

Create a zip file for the docs

11 months ago, Gary Kramlich
c6695a974177
Create a zip file for the docs

Also renamed `convey-docs.yml` as it was getting deleted by the convey clean plan previously.

Testing Done:
Ran locally and verified the zip file was structured correctly.

Reviewed at https://reviews.imfreedom.org/r/2469/
package docker
import (
"fmt"
log "github.com/sirupsen/logrus"
"keep.imfreedom.org/grim/convey/environment"
"keep.imfreedom.org/grim/convey/runtime"
"keep.imfreedom.org/grim/convey/tasks"
"keep.imfreedom.org/grim/convey/yaml"
)
type Export struct {
Files yaml.StringOrSlice `yaml:"files"`
realExport *tasks.Export
}
// New creates a new Export task.
func (e *Export) New() runtime.Task {
return &Export{}
}
// Valid validates the export task.
func (e *Export) Valid() error {
e.realExport = &tasks.Export{
Files: e.Files,
}
return e.realExport.Valid()
}
// Executes the task
func (e *Export) Execute(name string, logger *log.Entry, env environment.Environment, rt *runtime.Runtime) error {
return e.realExport.Execute(name, logger, env, rt)
}
func (e *Export) Deprecated() error {
return fmt.Errorf("docker/export has been deprecated in favor of convey/export since 0.15.0")
}