diff --git a/.github/workflows/deploy-web.yml b/.github/workflows/deploy-web.yml index 16d91fd09..636ccaab9 100644 --- a/.github/workflows/deploy-web.yml +++ b/.github/workflows/deploy-web.yml @@ -95,6 +95,8 @@ jobs: run: | echo "Deploying branch ${{ github.ref }} to production" commit_hash=`git rev-parse HEAD` + appspec_content=$(cat appspec.yml | jq -Rs .) aws deploy create-deployment \ --application-name LatitudeLLMCodeDeployApp \ - --deployment-group-name LatitudeLLMDeploymentGroup + --deployment-group-name LatitudeLLMDeploymentGroup \ + --revision "{\"revisionType\": \"AppSpecContent\", \"appSpecContent\": {\"content\": $appspec_content}}"