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 (
"keep.imfreedom.org/grim/convey/runtime"
)
var (
Tasks = map[string]runtime.Task{
"docker/build": &Build{},
"docker/import": &Import{},
"docker/environment": &Environment{},
"docker/export": &Export{},
"docker/login": &Login{},
"docker/logout": &Logout{},
"docker/pull": &Pull{},
"docker/push": &Push{},
"docker/remove": &Remove{},
"docker/run": &Run{},
"docker/tag": &Tag{},
}
)