v0.3.0
A ready-to-use CI/CD Pipeline for deploying your applications to fly.io
Attributes
Includes Deno configuration
Repository
Current version released
2 years ago
Dependencies
esm.sh
Fly Pipeline
A ready-to-use CI/CD Pipeline for deploying your applications to Fly.io.
🚀 Usage
Run the following command:
dagger run fluentci fly_pipelineEnvironment 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://esm.sh/@dagger.io/dagger@0.8.1";
import { Dagger } from "https://deno.land/x/fly_pipeline/mod.ts";
const { deploy } = Dagger;
function pipeline(src = ".") {
connect(async (client: Client) => {
await deploy(client, src);
});
}
pipeline();