Dagger
Search

github

No long description provided.

Installation

dagger install github.com/fluent-ci-templates/github-pipeline@0b2ea00d4cb7f6afeceda20c8ca8e2cd2cad06b5

Entrypoint

Return Type
Github
Example
func (m *myModule) example() *Github  {
	return dag.
			Github()
}
@function
def example() -> dag.Github:
	return (
		dag.github()
	)
@func()
example(): Github {
	return dag
		.github()
}

Types

Github 🔗

releaseUpload() 🔗

Upload asset files to a GitHub Release

Return Type
StringKind !
Arguments
NameTypeDefault ValueDescription
srcDirectory !-No description provided
tagStringKind !-No description provided
fileStringKind !-No description provided
tokenSecret !-No description provided
Example
Function Github.releaseUpload is not accessible from the github module
func (m *myModule) example(src , tag , file , token )   {
	return dag.
			Github().
			ReleaseUpload(src, tag, file, token)
}
@function
def example(src: , tag: , file: , token: ) -> :
	return (
		dag.github()
		.release_upload(src, tag, file, token)
	)
@func()
example(src: , tag: , file: , token: ):  {
	return dag
		.github()
		.releaseUpload(src, tag, file, token)
}