You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/en/enterprise/guides/deploy-crew.mdx
+91Lines changed: 91 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -187,6 +187,97 @@ You can also deploy your crews directly through the CrewAI AOP web interface by
187
187
188
188
</Steps>
189
189
190
+
## Option 3: Redeploy Using API (CI/CD Integration)
191
+
192
+
For automated deployments in CI/CD pipelines, you can use the CrewAI API to trigger redeployments of existing crews. This is particularly useful for GitHub Actions, Jenkins, or other automation workflows.
193
+
194
+
<Steps>
195
+
<Steptitle="Get Your Personal Access Token">
196
+
197
+
Navigate to your CrewAI AOP account settings to generate an API token:
198
+
199
+
1. Go to [app.crewai.com](https://app.crewai.com)
200
+
2. Click on **Settings** → **Account** → **Personal Access Token**
201
+
3. Generate a new token and copy it securely
202
+
4. Store this token as a secret in your CI/CD system
203
+
204
+
</Step>
205
+
206
+
<Steptitle="Find Your Automation UUID">
207
+
208
+
Locate the unique identifier for your deployed crew:
209
+
210
+
1. Go to **Automations** in your CrewAI AOP dashboard
211
+
2. Select your existing automation/crew
212
+
3. Click on **Additional Details**
213
+
4. Copy the **UUID** - this identifies your specific crew deployment
214
+
215
+
</Step>
216
+
217
+
<Steptitle="Trigger Redeployment via API">
218
+
219
+
Use the Deploy API endpoint to trigger a redeployment:
0 commit comments