Skip to content

Commit

Permalink
chore: rename code deploy app
Browse files Browse the repository at this point in the history
  • Loading branch information
geclos committed Sep 27, 2024
1 parent 725ec8c commit c8f3388
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/deploy-web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
1 change: 1 addition & 0 deletions apps/infra/src/app/production/web.ts
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,7 @@ const ecsService = new aws.ecs.Service('LatitudeLLMApp', {
const codeDeployApp = new aws.codedeploy.Application(
'LatitudeLLMCodeDeployApp',
{
name: 'LatitudeLLMCodeDeployApp',
computePlatform: 'ECS',
},
)
Expand Down

0 comments on commit c8f3388

Please sign in to comment.