Skip to main content
The Deno 2 Release Candidate is here
Learn more

Railway Pipeline

deno module deno compatibility

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

🚀 Usage

Run the following command:

dagger run fluentci railway_pipeline

Environment Variables

Variable Description
RAILWAY_TOKEN Your Railway Access Token

Jobs

Job Description
deploy Deploys your application to Railway.

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/railway_pipeline/mod.ts";

const { deploy } = Dagger;

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

pipeline();