GetSecretValidationStep returns the secret validation step for the Antigravity engine. Returns an empty step if custom command is specified.
(workflowData *WorkflowData)
| 81 | // GetSecretValidationStep returns the secret validation step for the Antigravity engine. |
| 82 | // Returns an empty step if custom command is specified. |
| 83 | func (e *AntigravityEngine) GetSecretValidationStep(workflowData *WorkflowData) GitHubActionStep { |
| 84 | return BuildDefaultSecretValidationStep( |
| 85 | workflowData, |
| 86 | []string{"ANTIGRAVITY_API_KEY"}, |
| 87 | "Antigravity CLI", |
| 88 | "https://antigravity.google/docs/cli-overview", |
| 89 | ) |
| 90 | } |
| 91 | |
| 92 | func (e *AntigravityEngine) GetInstallationSteps(workflowData *WorkflowData) []GitHubActionStep { |
| 93 | antigravityLog.Printf("Generating installation steps for Antigravity engine: workflow=%s", workflowData.Name) |