v0.5.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
esm.sh
std
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. |
Programmatic usage
You can also use this pipeline programmatically:
import Client, { connect } from "https://sdk.fluentci.io/v0.1.9/mod.ts";
import { deploy } from "https://pkg.fluentci.io/heroku_pipeline@v0.5.1/mod.ts";
function pipeline(src = ".") {
connect(async (client: Client) => {
await deploy(client, src);
});
}
pipeline();