Skip to content

Commit

Permalink
chore: specify appspec path to the deploy command
Browse files Browse the repository at this point in the history
  • Loading branch information
geclos committed Sep 27, 2024
1 parent c8f3388 commit c51e341
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/deploy-web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,11 @@ jobs:
# PULUMI_CONFIG_PASSPHRASE: ${{ secrets.PULUMI_CONFIG_PASSPHRASE }}

- name: Deploy with CodeDeploy
working-directory: apps/web
run: |
echo "Deploying branch ${{ github.ref }} to production"
commit_hash=`git rev-parse HEAD`
aws deploy create-deployment --application-name LatitudeLLMCodeDeployApp --deployment-group-name LatitudeLLMDeploymentGroup --github-location repository=$GITHUB_REPOSITORY,commitId=$commit_hash
aws deploy create-deployment \
--application-name LatitudeLLMCodeDeployApp \
--deployment-group-name LatitudeLLMDeploymentGroup \
--codedeploy-appspec ./appspec.yml

0 comments on commit c51e341

Please sign in to comment.