diff --git a/.github/workflows/deploy-web.yml b/.github/workflows/deploy-web.yml index ed8420ffa..a94f53629 100644 --- a/.github/workflows/deploy-web.yml +++ b/.github/workflows/deploy-web.yml @@ -81,13 +81,14 @@ jobs: aws-region: eu-central-1 role-skip-session-tagging: true - - name: Build & push docker images - working-directory: apps/infra - run: | - echo "Deploying Pulumi stack: docker-production-web" - pulumi up --stack docker-production-web --yes - env: - PULUMI_CONFIG_PASSPHRASE: ${{ secrets.PULUMI_CONFIG_PASSPHRASE }} + # TODO: uncomment + # - name: Build & push docker images + # working-directory: apps/infra + # run: | + # echo "Deploying Pulumi stack: docker-production-web" + # pulumi up --stack docker-production-web --yes + # env: + # PULUMI_CONFIG_PASSPHRASE: ${{ secrets.PULUMI_CONFIG_PASSPHRASE }} - name: Deploy with CodeDeploy run: | diff --git a/apps/infra/src/app/production/web.ts b/apps/infra/src/app/production/web.ts index f152ceb0d..e811144d3 100644 --- a/apps/infra/src/app/production/web.ts +++ b/apps/infra/src/app/production/web.ts @@ -164,6 +164,7 @@ const ecsService = new aws.ecs.Service('LatitudeLLMApp', { const codeDeployApp = new aws.codedeploy.Application( 'LatitudeLLMCodeDeployApp', { + name: 'LatitudeLLMCodeDeployApp', computePlatform: 'ECS', }, )