v0.7.1
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
deno.land/x
skypack.dev
lodash
Fly Pipeline
A ready-to-use CI/CD Pipeline for deploying your applications to Fly.io.
🚀 Usage
Run the following command in your project:
fluentci run fly_pipelineOr, if you want to use it as a template:
fluentci init -t flyThis will create a .fluentci folder in your project.
Now you can run the pipeline with:
fluentci run .Dagger Module
Use as a Dagger Module:
dagger mod install github.com/fluent-ci-templates/fly-pipeline@modEnvironment Variables
| Variable | Description |
|---|---|
| FLY_API_TOKEN | Your Fly API token. |
Jobs
| Job | Description |
|---|---|
| deploy | Deploys your application to Fly. |
deploy(
src: Directory | string,
token: Secret | string
): Promise<string>Programmatic usage
You can also use this pipeline programmatically:
import { deploy } from "https://pkg.fluentci.io/fly_pipeline@v0.7.1/mod.ts";
await deploy(".", Deno.env.get("FLY_API_TOKEN")!);