github
No long description provided.
Installation
dagger install github.com/fluent-ci-templates/github-pipeline@0b2ea00d4cb7f6afeceda20c8ca8e2cd2cad06b5
Entrypoint
Return Type
Github
Example
dagger -m github.com/fluent-ci-templates/github-pipeline@0b2ea00d4cb7f6afeceda20c8ca8e2cd2cad06b5 call \
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
Name | Type | Default Value | Description |
---|---|---|---|
src | Directory ! | - | No description provided |
tag | StringKind ! | - | No description provided |
file | StringKind ! | - | No description provided |
token | Secret ! | - | No description provided |
Example
dagger -m github.com/fluent-ci-templates/github-pipeline@0b2ea00d4cb7f6afeceda20c8ca8e2cd2cad06b5 call \
release-upload
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)
}