Railway Pipeline

fluentci pipeline deno module deno compatibility

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

🚀 Usage

Run the following command:

fluentci run railway_pipeline

Dagger Module

Use as a Dagger Module:

dagger mod install github.com/fluent-ci-templates/railway-pipeline@mod

Environment Variables

Variable Description
RAILWAY_TOKEN Your Railway Access Token

Jobs

Job Description
deploy Deploys your application to Railway.
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/railway_pipeline@v0.7.1/mod.ts";

await deploy(".", Deno.env.get("RAILWAY_TOKEN")!);