v0.6.1
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
deno.land/x
Heroku Pipeline
A ready-to-use CI/CD Pipeline for deploying your applications to Heroku.
🚀 Usage
Run the following command:
dagger run fluentci heroku_pipelineEnvironment 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!
): StringProgrammatic usage
You can also use this pipeline programmatically:
import { deploy } from "https://pkg.fluentci.io/heroku_pipeline@v0.6.1/mod.ts";
await deploy();