v0.8.0
A ready-to-use CI/CD Pipeline for deploying your applications to Heroku.
Attributes
Includes Deno configuration
Repository
Current version released
2 years ago
Dependencies
other
jsr:@std/flags@0.218.2jsr:@std/fmt@0.218.2/colorsjsr:@std/path@0.218.2jsr:@std/testing@0.218.2/assertsjsr:@tsirysndr/env-js@0.1.2jsr:@tsirysndr/fluent-az-pipelines@0.3jsr:@tsirysndr/fluent-circleci@0.3jsr:@tsirysndr/fluent-codepipeline@0.3jsr:@tsirysndr/fluent-gh-actions@0.3jsr:@tsirysndr/fluent-gitlab-ci@0.5npm:graphql-request@6.1.0npm:graphql@16.8.1npm:lodash@4.17.21npm:node-color-log@11.0.2npm:stringify-tree@1.1.1
Heroku Pipeline
A ready-to-use CI/CD Pipeline for deploying your applications to Heroku.
🚀 Usage
Run the following command:
dagger run fluentci heroku_pipelineDagger Module
Use as a Dagger Module:
dagger mod install github.com/fluent-ci-templates/heroku-pipeline@modEnvironment 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(
src: Directory | string,
apiKey: Secret | string,
appName: string
): Promise<string>Programmatic usage
You can also use this pipeline programmatically:
import { deploy } from "https://pkg.fluentci.io/heroku_pipeline@v0.7.1/mod.ts";
await deploy(
".",
Deno.env.get("HEROKU_API_KEY")!,
Deno.env.get("HEROKU_APP_NAME")!
);