Built and signed on GitHub ActionsBuilt and signed on GitHub Actions
Built and signed on GitHub Actions
🧩 A ready to use CI/CD Pipeline for Fastlane Projects
Fastlane Pipeline
A ready-to-use Fastlane pipeline for React Native projects.
🚀 Usage
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 .
🧩 Dagger Module
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 .
✨ Jobs
Job | Description |
---|---|
execLane | Executes a Fastlane lane |
execLane( lane: string, src: string | Directory | undefined = "." ): Promise<Container | string>
👨💻 Programmatic usage
You can also use this pipeline programmatically:
import { execLane } from "jsr:@fluentci/fastlane"; await execLane("buildRelease");
Built and signed on
GitHub Actions
Add Package
deno add jsr:@fluentci/fastlane
Import symbol
import * as fastlane from "@fluentci/fastlane";
Import directly with a jsr specifier
import * as fastlane from "jsr:@fluentci/fastlane";
Add Package
pnpm i jsr:@fluentci/fastlane
pnpm dlx jsr add @fluentci/fastlane
Import symbol
import * as fastlane from "@fluentci/fastlane";
Add Package
yarn add jsr:@fluentci/fastlane
yarn dlx jsr add @fluentci/fastlane
Import symbol
import * as fastlane from "@fluentci/fastlane";
Add Package
vlt install jsr:@fluentci/fastlane
Import symbol
import * as fastlane from "@fluentci/fastlane";
Add Package
npx jsr add @fluentci/fastlane
Import symbol
import * as fastlane from "@fluentci/fastlane";
Add Package
bunx jsr add @fluentci/fastlane
Import symbol
import * as fastlane from "@fluentci/fastlane";