Skip to main content
Deno 2 is finally here 🎉️
Learn more

Fastlane Pipeline

deno module deno compatibility

A ready-to-use Fastlane pipeline and jobs for React Native projects.

🚀 Usage

Run the following command on your React Native project:

dagger run deno run -A https://deno.land/x/fastlane_pipeline/ci.ts

Or, if you want to use the predefined jobs:

import Client, { connect } from "@dagger.io/dagger";
import { Dagger } from "https://deno.land/x/fastlane_pipeline/mod.ts";

const { buildRelease } = Dagger;

function pipeline(src = ".") {
  connect(async (client: Client) => {
    await buildRelease(client, src);
  });
}

pipeline();