cloudsmith
Base for cloudsmith-cli
Installation
dagger install github.com/jmiller-cs/daggerverse/cloudsmith@82f48e0dcd7436cb6d85de0cc302d7ca4bf5b541Entrypoint
Return Type
Cloudsmith ! Example
dagger -m github.com/jmiller-cs/daggerverse/cloudsmith@82f48e0dcd7436cb6d85de0cc302d7ca4bf5b541 call \
func (m *MyModule) Example() *dagger.Cloudsmith {
return dag.
Cloudsmith()
}@function
def example() -> dagger.Cloudsmith:
return (
dag.cloudsmith()
)@func()
example(): Cloudsmith {
return dag
.cloudsmith()
}Types
Cloudsmith 🔗
base() 🔗
Returns a minimal Container with cloudsmith-cli
Return Type
Container ! Example
dagger -m github.com/jmiller-cs/daggerverse/cloudsmith@82f48e0dcd7436cb6d85de0cc302d7ca4bf5b541 call \
basefunc (m *MyModule) Example() *dagger.Container {
return dag.
Cloudsmith().
Base()
}@function
def example() -> dagger.Container:
return (
dag.cloudsmith()
.base()
)@func()
example(): Container {
return dag
.cloudsmith()
.base()
}