https://github.com/convox/circleci-orb
https://github.com/convox/circleci-orb
circleci-orbs
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/convox/circleci-orb
- Owner: convox
- License: mit
- Created: 2019-03-06T23:44:46.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-03-21T18:59:11.000Z (over 2 years ago)
- Last Synced: 2025-01-16T00:52:35.391Z (9 months ago)
- Topics: circleci-orbs
- Size: 39.1 KB
- Stars: 1
- Watchers: 9
- Forks: 10
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# convox/circleci-orb
CircleCI Orb for deploying to Convox.
## Description
The Convox Orb allows CircleCI users to easily deploy their application to AWS ECS and AWS EKS, via Convox, with a single command, as part of their CircleCI workflow.
__NOTE__: In order to make use of the Convox Orb you must first have a Convox account at the Basic level or above and a CircleCI account.
## Usage
https://docs.convox.com/external-services/circleci
As an example if you have a Convox rack named “production” and a Convox app named “example” you can deploy with the following config.yml:
```
version: 2.1
orbs:
convox: convox/orb@1.4.1
workflows:
deploy:
jobs:
- deploy
jobs:
deploy:
executor: convox/cli
steps:
- checkout
- run: make test
- convox/deploy:
rack: production
app: example
```You will need to set the `CONVOX_PASSWORD` environment variable on your project to your Convox deploy key.
## See Also
https://circleci.com/orbs/registry/orb/convox/orb
## License
MIT