Dagger
Search

fastlane

No long description provided.

Installation

dagger install github.com/fluent-ci-templates/fastlane-pipeline@da8c0d7deda6084d63bb74eaf846f00a5df97bf5

Entrypoint

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

Types

Fastlane 🔗

execLane() 🔗

Executes a lane

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
laneStringKind !-No description provided
srcDirectory -No description provided
Example
Function Fastlane.execLane is not accessible from the fastlane module
func (m *myModule) example(lane )   {
	return dag.
			Fastlane().
			ExecLane(lane)
}
@function
def example(lane: ) -> :
	return (
		dag.fastlane()
		.exec_lane(lane)
	)
@func()
example(lane: ):  {
	return dag
		.fastlane()
		.execLane(lane)
}