Skip to content

A ready-to-use CI/CD Pipeline for deploying your Rust applications to Shuttle.

License

Notifications You must be signed in to change notification settings

fluent-ci-templates/shuttle-pipeline

Repository files navigation

Shuttle Pipeline

fluentci pipeline deno module deno compatibility dagger-min-version

A ready-to-use CI/CD Pipeline for deploying your shuttle applications to Shuttle.

🚀 Usage

Run the following command:

fluentci run shuttle_pipeline

🧩 Dagger Module

Use as a Dagger Module:

dagger install github.com/fluent-ci-templates/shuttle-pipeline@main

Call deploy function from this module:

dagger call deploy --src . --api-key SHUTTLE_API_KEY

🛠️ Environment Variables

Variable Description
SHUTTLE_API_KEY Your Shuttle API key
SHUTTLE_VERSION The version of cargo shuttle, defaults to v0.39.0

✨ Jobs

Job Description
deploy Deploy your shuttle application to shuttle.rs.
 deploy(
  src: string | Directory | undefined = ".",
  apiKey?: string | Secret,
  shuttleVersion?: string,
): Promise<string>

👨‍💻 Programmatic usage

You can also use this pipeline programmatically:

import { deploy } from "jsr:@fluentci/shuttle";

await deploy(".");