Dagger
Search

sem-rel

This module has been generated via dagger init and serves as a reference to
basic module structure as you get started with Dagger.

Two functions have been pre-created. You can modify, delete, or add to them,
as needed. They demonstrate usage of arguments and return types using simple
echo and grep commands. The functions can be called from the dagger CLI or
from one of the SDKs.

The first line in this comment block is a short description line and the
rest is a long description with more detail on the module's purpose or usage,
if appropriate. All modules should have a short description.

Installation

dagger install github.com/mjb141/daggerverse/sem-rel@b91b312a9db89a37bb10e98d2edb439abb5cb7c9

Entrypoint

Return Type
SemRel !
Example
func (m *myModule) example() *SemRel  {
	return dag.
			SemRel()
}

Types

SemRel 🔗

release() 🔗

Returns a container that echoes whatever string argument is provided

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
dirDirectory !-A directory.
tokenSecret !-A reference to a secret value, which can be handled more safely than the value itself.
ciCheckBoolean !trueNo description provided
Example
func (m *myModule) example(dir *Directory, token *Secret, ciCheck bool) *Container  {
	return dag.
			SemRel().
			Release(dir, token, ciCheck)
}