Google App Engine
- POST
- /workspaces
- /:workspace
- /projects
- /:project_name
- /pipelines
- /:pipeline_id
- /actions
Creates a new Google App Engine action in the pipeline
Request example
curl -X POST "https://api.buddy.works/workspaces/:workspace/projects/:project_name/pipelines/:pipeline_id/actions" \
-H "Authorization: Bearer <YOUR-TOKEN>" \
-H "Content-Type: application/json" \
-d '{
"name": "Deploy to Google App Engine/buddy-tests-112923",
"type": "GOOGLE_APP_DEPLOY",
"trigger_time": "ON_EVERY_EXECUTION",
"local_path": "/",
"bucket_name": "artifacts.tokyo-house-112923.appspot.com",
"application_name": "buddy-tests-112923",
"version_label": "${BUDDY_RUN_COMMIT}",
"image_url": "gcr.io/your-project-id/your-image",
"promote_all_traffic": true,
"stop_previous_version": true,
"verbosity": "warning"
}'STATUS200 OK