Skip to main content

Fastlane

Running the pre-built Fastlane pipeline directly

Run the following command to run the pre-built Fastlane pipeline without having to initialize a project:

fluentci run fastlane_pipeline

Add Fastlane Pipeline to your project

Run the following command to add Fastlane pipeline to your project:

fluentci init -t fastlane

This will create a .fluentci directory in your project, feel free to customize the pipeline for your needs. You can then run the following command to start the pipeline:

fluentci run .

Jobs

JobDescription
execLaneExecutes a Fastlane lane

Programmatic usage

You can also use this pipeline programmatically:

import { execLane } from "https://pkg.fluentci.io/[email protected]/mod.ts";

await execLane("buildRelease");