v0.1.2
A ready-to-use CI/CD Pipeline for Fastlane
Attributes
Includes Deno configuration
Repository
Current version released
2 years ago
Dependencies
esm.sh
Fastlane Pipeline
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.tsOr, 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();