github_cicd_setup
Automate deployment by configuring GitHub CI/CD pipelines with deploy keys and workflows, specifying repository URLs and server deployment paths. Streamline VPS setup and management.
Instructions
Setup GitHub CI/CD with deploy keys and workflow
Input Schema
Name | Required | Description | Default |
---|---|---|---|
deployPath | Yes | Deployment path on server | |
repoUrl | Yes | GitHub repository URL |
Input Schema (JSON Schema)
{
"properties": {
"deployPath": {
"description": "Deployment path on server",
"type": "string"
},
"repoUrl": {
"description": "GitHub repository URL",
"type": "string"
}
},
"required": [
"repoUrl",
"deployPath"
],
"type": "object"
}