Skip to content

Commit

Permalink
Update aws-ec2-dev.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
essential2189 authored Feb 4, 2024
1 parent 0109f7a commit 31e681b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/aws-ec2-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ permissions:

env:
AWS_REGION: ap-northeast-2
AWS_S3_BUCKET: todaypopup-cicd/dev
AWS_S3_BUCKET: todaypopup-cicd
AWS_CODE_DEPLOY_APPLICATION: todaypopup-dev-cicd
AWS_CODE_DEPLOY_GROUP: todaypopup-dev-cicd-group

Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
aws-secret-access-key: ${{ secrets.CICD_SECRET_KEY }}

- name: S3에 업로드
run: aws deploy push --application-name ${{ env.AWS_CODE_DEPLOY_APPLICATION }} --ignore-hidden-files --s3-location s3://$AWS_S3_BUCKET/$GITHUB_SHA.zip --source .
run: aws deploy push --application-name ${{ env.AWS_CODE_DEPLOY_APPLICATION }} --ignore-hidden-files --s3-location s3://$AWS_S3_BUCKET/dev/$GITHUB_SHA.zip --source .

- name: EC2에 배포
run: aws deploy create-deployment --application-name ${{ env.AWS_CODE_DEPLOY_APPLICATION }} --deployment-config-name CodeDeployDefault.AllAtOnce --deployment-group-name ${{ env.AWS_CODE_DEPLOY_GROUP }} --s3-location bucket=$AWS_S3_BUCKET,key=$GITHUB_SHA.zip,bundleType=zip
run: aws deploy create-deployment --application-name ${{ env.AWS_CODE_DEPLOY_APPLICATION }} --deployment-config-name CodeDeployDefault.AllAtOnce --deployment-group-name ${{ env.AWS_CODE_DEPLOY_GROUP }} --s3-location bucket=$AWS_S3_BUCKET,key=dev/$GITHUB_SHA.zip,bundleType=zip

0 comments on commit 31e681b

Please sign in to comment.