Dagger
Search

mod-releaser

A module for handling module release in daggerverse

Installation

dagger install github.com/Dudesons/daggerverse/mod-releaser@v0.3.0

Entrypoint

Return Type
ModReleaser !
Arguments
NameTypeDefault ValueDescription
gitRepoDirectory !-A git repository where the release process will be applied
componentString !-The module name to publish
Example
func (m *myModule) example(gitRepo *Directory, component string) *ModReleaser  {
	return dag.
			ModReleaser(gitRepo, component)
}

Types

ModReleaser πŸ”—

tags() πŸ”—

Return Type
[String ! ] !
Example
func (m *myModule) example(ctx context.Context, gitRepo *Directory, component string) []string  {
	return dag.
			ModReleaser(gitRepo, component).
			Tags(ctx)
}

tag() πŸ”—

Return Type
String !
Example
func (m *myModule) example(ctx context.Context, gitRepo *Directory, component string) string  {
	return dag.
			ModReleaser(gitRepo, component).
			Tag(ctx)
}

withContainer() πŸ”—

Allow to override the current container

Return Type
ModReleaser !
Arguments
NameTypeDefault ValueDescription
ctrContainer !-No description provided
Example
func (m *myModule) example(gitRepo *Directory, component string, ctr *Container) *ModReleaser  {
	return dag.
			ModReleaser(gitRepo, component).
			WithContainer(ctr)
}

shell() πŸ”—

Open a shell

Return Type
Container !
Example
func (m *myModule) example(gitRepo *Directory, component string) *Container  {
	return dag.
			ModReleaser(gitRepo, component).
			Shell()
}

withGitConfig() πŸ”—

Setup global git config, it won’t affect the git config of the local repository

Return Type
ModReleaser !
Arguments
NameTypeDefault ValueDescription
cfgFile -A path to a git config file to use
emailString -the email to use in the git config
nameString -the username to use in the git config
Example
func (m *myModule) example(gitRepo *Directory, component string) *ModReleaser  {
	return dag.
			ModReleaser(gitRepo, component).
			WithGitConfig()
}

withSshKeys() πŸ”—

Mount ssh keys from the host

Return Type
ModReleaser !
Arguments
NameTypeDefault ValueDescription
srcDirectory !-The directory with ssh keys to mount
Example
func (m *myModule) example(gitRepo *Directory, component string, src *Directory) *ModReleaser  {
	return dag.
			ModReleaser(gitRepo, component).
			WithSshKeys(src)
}

withBranch() πŸ”—

Select a specific git branch

Return Type
ModReleaser !
Arguments
NameTypeDefault ValueDescription
branchString "main"Define the branch from where to publish
Example
func (m *myModule) example(gitRepo *Directory, component string) *ModReleaser  {
	return dag.
			ModReleaser(gitRepo, component).
			WithBranch()
}

major() πŸ”—

Increase the major version

Return Type
ModReleaser !
Arguments
NameTypeDefault ValueDescription
msgString -Define a custom message for the git tag otherwise it will be the default from the function
Example
func (m *myModule) example(gitRepo *Directory, component string) *ModReleaser  {
	return dag.
			ModReleaser(gitRepo, component).
			Major()
}

minor() πŸ”—

Increase the minor version

Return Type
ModReleaser !
Arguments
NameTypeDefault ValueDescription
msgString -Define a custom message for the git tag otherwise it will be the default from the function
Example
func (m *myModule) example(gitRepo *Directory, component string) *ModReleaser  {
	return dag.
			ModReleaser(gitRepo, component).
			Minor()
}

patch() πŸ”—

Increase the patch version

Return Type
ModReleaser !
Arguments
NameTypeDefault ValueDescription
msgString -Define a custom message for the git tag otherwise it will be the default from the function
Example
func (m *myModule) example(gitRepo *Directory, component string) *ModReleaser  {
	return dag.
			ModReleaser(gitRepo, component).
			Patch()
}

publish() πŸ”—

Publish the git tag and the module

Return Type
ModReleaser !
Arguments
NameTypeDefault ValueDescription
gitPushBoolean -Indicate if the publish process should git push the tag
Example
func (m *myModule) example(gitRepo *Directory, component string) *ModReleaser  {
	return dag.
			ModReleaser(gitRepo, component).
			Publish()
}

repository() πŸ”—

Return the git repository

Return Type
Directory !
Example
func (m *myModule) example(gitRepo *Directory, component string) *Directory  {
	return dag.
			ModReleaser(gitRepo, component).
			Repository()
}

do() πŸ”—

Execute all commands

Return Type
String !
Example
func (m *myModule) example(ctx context.Context, gitRepo *Directory, component string) string  {
	return dag.
			ModReleaser(gitRepo, component).
			Do(ctx)
}