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

Fly Pipeline

fluentci pipeline deno module deno compatibility

A ready-to-use CI/CD Pipeline for deploying your applications to Fly.io.

🚀 Usage

Run the following command:

dagger run fluentci fly_pipeline

Environment Variables

Variable Description
FLY_API_TOKEN Your Fly API token.

Jobs

Job Description
deploy Deploys your application to Fly.

Programmatic usage

You can also use this pipeline programmatically:

import Client, { connect } from "https://sdk.fluentci.io/v0.1.7/mod.ts";
import { deploy } from "https://pkg.fluentci.io/fly_pipeline@v0.5.0/mod.ts";

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

pipeline();