v0.1.3
ready-to-use Fastlane pipeline and jobs for Android (React Native) projects.
Attributes
Includes Deno configuration
Current version released
3 years ago
Dependencies
esm.sh
Android Fastlane Pipeline
A ready-to-use Fastlane pipeline and jobs for Android (React Native) projects.
🚀 Usage
Run the following command on your Android (React Native) project:
dagger run deno run -A https://deno.land/x/android_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/android_fastlane_pipeline/mod.ts";
const { buildRelease } = Dagger;
function pipeline(src = ".") {
connect(async (client: Client) => {
await buildRelease(client, src);
});
}
pipeline();