We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ParthKapoor-dev/devex'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
README.mdβ’1.83 KiB
# π¦ GitHub Actions Workflows
This folder contains CI/CD pipelines for the Devex project. Each workflow automates deployment and image publishing for various components.
## π Required Repository Secrets
Before using these workflows, make sure the following secrets are added under:
**GitHub Repo β Settings β Secrets β Actions**
| Secret Name | Description |
|--------------------------|---------------------------------------------|
| `DEPLOY_SSH_PRIVATE_KEY` | SSH private key for remote deploy user |
| `DO_SPACES_KEY` | Access key for DigitalOcean Spaces |
| `DO_SPACES_SECRET` | Secret key for DigitalOcean Spaces |
| `DO_SPACES_BUCKET` | Bucket name where templates will be synced |
| `DO_SPACES_ENDPOINT` | Endpoint URL for DigitalOcean Spaces |
---
## π§± Workflows Summary
### `core-pipeline.yaml`
- **Triggers**: On changes in `apps/core/` or the workflow file itself.
- **What it does**:
- Builds the Docker image for the Core service.
- Pushes it to GHCR.
- Deploys the updated Core service via Docker Stack to a remote VPS using SSH.
π See also: [`apps/core/DEPLOYMENT.md`](../../apps/core/DEPLOYMENT.md)
---
### `runner-pipeline.yaml`
- **Triggers**: On changes in `apps/runner/` or the workflow file.
- **What it does**:
- Dynamically finds all Dockerfiles in `apps/runner/`.
- Builds and pushes one Docker image per template runner to GHCR.
- Tags each image with both `:latest` and the current `git sha`.
---
### `templates-pipeline.yaml`
- **Triggers**: On changes in any folder inside `templates/` _(excluding README files)_.
- **What it does**:
- Checks if any individual template folder exceeds 8MB.
- If all are within limits, syncs the `templates/` directory to DigitalOcean Spaces (S3-compatible).
---