-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
32 lines (32 loc) · 1.59 KB
/
plugin.json
File metadata and controls
32 lines (32 loc) · 1.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "workflow-plugin-cicd",
"version": "0.1.0",
"description": "CI/CD pipeline steps: shell exec, Docker, artifact management, security scanning, git operations, AWS CodeBuild, deployment strategies",
"author": "GoCodeAlone",
"license": "MIT",
"type": "external",
"tier": "community",
"minEngineVersion": "0.5.0",
"keywords": ["cicd", "git", "docker", "shell", "codebuild", "scanning", "artifacts", "deployment", "rolling", "blue-green", "canary", "container"],
"homepage": "https://github.com/GoCodeAlone/workflow-plugin-cicd",
"repository": "https://github.com/GoCodeAlone/workflow-plugin-cicd",
"capabilities": {
"configProvider": false,
"moduleTypes": ["aws.codebuild"],
"stepTypes": [
"step.shell_exec",
"step.artifact_pull", "step.artifact_push",
"step.docker_build", "step.docker_push", "step.docker_run",
"step.scan_sast", "step.scan_container", "step.scan_deps",
"step.gate",
"step.build_ui", "step.build_from_config", "step.build_binary",
"step.git_clone", "step.git_commit", "step.git_push", "step.git_tag", "step.git_checkout",
"step.codebuild_create_project", "step.codebuild_start", "step.codebuild_status",
"step.codebuild_logs", "step.codebuild_delete_project", "step.codebuild_list_builds",
"step.deploy", "step.deploy_rolling", "step.deploy_blue_green",
"step.deploy_canary", "step.deploy_verify", "step.deploy_rollback",
"step.container_build"
],
"triggerTypes": []
}
}