Skip to main content
Deno 2 is finally here 🎉️
Learn more

Heroku Pipeline

fluentci pipeline deno module deno compatibility

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

🚀 Usage

Run the following command:

dagger run fluentci heroku_pipeline

Environment Variables

Variable Description
HEROKU_API_KEY Your Heroku API Key
HEROKU_APP_NAME Your Heroku App

Jobs

Job Description
deploy Deploys your application to Heroku.
deploy(
  apiKey: String!, 
  appName: String!, 
  src: String!
): String

Programmatic usage

You can also use this pipeline programmatically:

import { deploy } from "https://pkg.fluentci.io/heroku_pipeline@v0.6.1/mod.ts";

await deploy();