A ready-to-use Fastlane pipeline for React Native projects.
Run the following command:
fluentci run fastlane_pipeline <lane>
Or, if you want to use it as a template:
fluentci init -t fastlane
This will create a .fluentci
folder in your project.
Now you can run the pipeline with:
fluentci run .
Use as a Dagger Module:
dagger install github.com/fluent-ci-templates/fastlane-pipeline@main
Call a function from the module:
dagger call exec-lane --lane buildRelease --src .
Job | Description |
---|---|
execLane | Executes a Fastlane lane |
execLane(
lane: string,
src: string | Directory | undefined = "."
): Promise<Container | string>
You can also use this pipeline programmatically:
import { execLane } from "jsr:@fluentci/fastlane";
await execLane("buildRelease");