-
Notifications
You must be signed in to change notification settings - Fork 44.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
84 changed files
with
2,446 additions
and
3,632 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: AutoGPT Platform - Build, Push, and Deploy Prod Environment | ||
name: AutoGPT Platform - Deploy Prod Environment | ||
|
||
on: | ||
release: | ||
|
@@ -8,12 +8,6 @@ permissions: | |
contents: 'read' | ||
id-token: 'write' | ||
|
||
env: | ||
PROJECT_ID: ${{ secrets.GCP_PROJECT_ID }} | ||
GKE_CLUSTER: prod-gke-cluster | ||
GKE_ZONE: us-central1-a | ||
NAMESPACE: prod-agpt | ||
|
||
jobs: | ||
migrate: | ||
environment: production | ||
|
@@ -22,7 +16,7 @@ jobs: | |
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
|
@@ -48,135 +42,14 @@ jobs: | |
env: | ||
DATABASE_URL: ${{ secrets.MARKET_DATABASE_URL }} | ||
|
||
build-push-deploy: | ||
environment: production | ||
name: Build, Push, and Deploy | ||
trigger: | ||
needs: migrate | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- id: 'auth' | ||
uses: 'google-github-actions/auth@v2' | ||
with: | ||
workload_identity_provider: 'projects/1021527134101/locations/global/workloadIdentityPools/prod-pool/providers/github' | ||
service_account: '[email protected]' | ||
token_format: 'access_token' | ||
create_credentials_file: true | ||
|
||
- name: 'Set up Cloud SDK' | ||
uses: 'google-github-actions/setup-gcloud@v2' | ||
|
||
- name: 'Configure Docker' | ||
run: | | ||
gcloud auth configure-docker us-east1-docker.pkg.dev | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
|
||
- name: Cache Docker layers | ||
uses: actions/cache@v4 | ||
with: | ||
path: /tmp/.buildx-cache | ||
key: ${{ runner.os }}-buildx-${{ github.sha }} | ||
restore-keys: | | ||
${{ runner.os }}-buildx- | ||
- name: Check for changes | ||
id: check_changes | ||
run: | | ||
git fetch origin master | ||
BACKEND_CHANGED=$(git diff --name-only origin/master HEAD | grep "^autogpt_platform/backend/" && echo "true" || echo "false") | ||
FRONTEND_CHANGED=$(git diff --name-only origin/master HEAD | grep "^autogpt_platform/frontend/" && echo "true" || echo "false") | ||
MARKET_CHANGED=$(git diff --name-only origin/master HEAD | grep "^autogpt_platform/market/" && echo "true" || echo "false") | ||
echo "backend_changed=$BACKEND_CHANGED" >> $GITHUB_OUTPUT | ||
echo "frontend_changed=$FRONTEND_CHANGED" >> $GITHUB_OUTPUT | ||
echo "market_changed=$MARKET_CHANGED" >> $GITHUB_OUTPUT | ||
- name: Get GKE credentials | ||
uses: 'google-github-actions/get-gke-credentials@v2' | ||
with: | ||
cluster_name: ${{ env.GKE_CLUSTER }} | ||
location: ${{ env.GKE_ZONE }} | ||
|
||
- name: Build and Push Backend | ||
if: steps.check_changes.outputs.backend_changed == 'true' | ||
uses: docker/build-push-action@v2 | ||
with: | ||
context: . | ||
file: ./autogpt_platform/backend/Dockerfile | ||
push: true | ||
tags: us-east1-docker.pkg.dev/agpt-prod/agpt-backend-prod/agpt-backend-prod:${{ github.sha }} | ||
cache-from: type=local,src=/tmp/.buildx-cache | ||
cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | ||
|
||
- name: Build and Push Frontend | ||
if: steps.check_changes.outputs.frontend_changed == 'true' | ||
uses: docker/build-push-action@v2 | ||
with: | ||
context: . | ||
file: ./autogpt_platform/frontend/Dockerfile | ||
push: true | ||
tags: us-east1-docker.pkg.dev/agpt-prod/agpt-frontend-prod/agpt-frontend-prod:${{ github.sha }} | ||
cache-from: type=local,src=/tmp/.buildx-cache | ||
cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | ||
|
||
- name: Build and Push Market | ||
if: steps.check_changes.outputs.market_changed == 'true' | ||
uses: docker/build-push-action@v2 | ||
with: | ||
context: . | ||
file: ./autogpt_platform/market/Dockerfile | ||
push: true | ||
tags: us-east1-docker.pkg.dev/agpt-prod/agpt-market-prod/agpt-market-prod:${{ github.sha }} | ||
cache-from: type=local,src=/tmp/.buildx-cache | ||
cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max | ||
|
||
- name: Move cache | ||
run: | | ||
rm -rf /tmp/.buildx-cache | ||
mv /tmp/.buildx-cache-new /tmp/.buildx-cache | ||
- name: Set up Helm | ||
uses: azure/setup-helm@v4 | ||
with: | ||
version: v3.4.0 | ||
|
||
- name: Deploy Backend | ||
if: steps.check_changes.outputs.backend_changed == 'true' | ||
run: | | ||
helm upgrade autogpt-server ./autogpt-server \ | ||
--namespace ${{ env.NAMESPACE }} \ | ||
-f autogpt-server/values.yaml \ | ||
-f autogpt-server/values.prod.yaml \ | ||
--set image.tag=${{ github.sha }} | ||
- name: Deploy Websocket | ||
if: steps.check_changes.outputs.backend_changed == 'true' | ||
run: | | ||
helm upgrade autogpt-websocket-server ./autogpt-websocket-server \ | ||
--namespace ${{ env.NAMESPACE }} \ | ||
-f autogpt-websocket-server/values.yaml \ | ||
-f autogpt-websocket-server/values.prod.yaml \ | ||
--set image.tag=${{ github.sha }} | ||
- name: Deploy Market | ||
if: steps.check_changes.outputs.market_changed == 'true' | ||
run: | | ||
helm upgrade autogpt-market ./autogpt-market \ | ||
--namespace ${{ env.NAMESPACE }} \ | ||
-f autogpt-market/values.yaml \ | ||
-f autogpt-market/values.prod.yaml \ | ||
--set image.tag=${{ github.sha }} | ||
- name: Deploy Frontend | ||
if: steps.check_changes.outputs.frontend_changed == 'true' | ||
run: | | ||
helm upgrade autogpt-builder ./autogpt-builder \ | ||
--namespace ${{ env.NAMESPACE }} \ | ||
-f autogpt-builder/values.yaml \ | ||
-f autogpt-builder/values.prod.yaml \ | ||
--set image.tag=${{ github.sha }} | ||
- name: Trigger deploy workflow | ||
uses: peter-evans/repository-dispatch@v2 | ||
with: | ||
token: ${{ secrets.DEPLOY_TOKEN }} | ||
repository: Significant-Gravitas/AutoGPT_cloud_infrastructure | ||
event-type: build_deploy_prod | ||
client-payload: '{"ref": "${{ github.ref }}", "sha": "${{ github.sha }}", "repository": "${{ github.repository }}"}' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
name: AutoGPT Platform - Deploy Dev Environment | ||
|
||
on: | ||
push: | ||
branches: [ dev ] | ||
paths: | ||
- 'autogpt_platform/**' | ||
|
||
permissions: | ||
contents: 'read' | ||
id-token: 'write' | ||
|
||
jobs: | ||
migrate: | ||
environment: develop | ||
name: Run migrations for AutoGPT Platform | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.11' | ||
|
||
- name: Install Python dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install prisma | ||
- name: Run Backend Migrations | ||
working-directory: ./autogpt_platform/backend | ||
run: | | ||
python -m prisma migrate deploy | ||
env: | ||
DATABASE_URL: ${{ secrets.BACKEND_DATABASE_URL }} | ||
|
||
- name: Run Market Migrations | ||
working-directory: ./autogpt_platform/market | ||
run: | | ||
python -m prisma migrate deploy | ||
env: | ||
DATABASE_URL: ${{ secrets.MARKET_DATABASE_URL }} | ||
|
||
trigger: | ||
needs: migrate | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Trigger deploy workflow | ||
uses: peter-evans/repository-dispatch@v2 | ||
with: | ||
token: ${{ secrets.DEPLOY_TOKEN }} | ||
repository: Significant-Gravitas/AutoGPT_cloud_infrastructure | ||
event-type: build_deploy_dev | ||
client-payload: '{"ref": "${{ github.ref }}", "sha": "${{ github.sha }}", "repository": "${{ github.repository }}"}' |
Oops, something went wrong.