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
Name | Type | Default Value | Description |
---|---|---|---|
gitRepo | Directory ! | - | A git repository where the release process will be applied |
component | String ! | - | 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
Name | Type | Default Value | Description |
---|---|---|---|
ctr | Container ! | - | 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
Name | Type | Default Value | Description |
---|---|---|---|
cfg | File | - | A path to a git config file to use |
String | - | the email to use in the git config | |
name | String | - | 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
Name | Type | Default Value | Description |
---|---|---|---|
src | Directory ! | - | 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
Name | Type | Default Value | Description |
---|---|---|---|
branch | String | "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
Name | Type | Default Value | Description |
---|---|---|---|
msg | String | - | 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
Name | Type | Default Value | Description |
---|---|---|---|
msg | String | - | 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
Name | Type | Default Value | Description |
---|---|---|---|
msg | String | - | 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
Name | Type | Default Value | Description |
---|---|---|---|
gitPush | Boolean | - | 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)
}