Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

develop [develop] fix: 메인서버 aws migration #501

Merged
merged 1 commit into from
Jul 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,13 +76,13 @@ jobs:
run: |
aws s3 cp \
--region ap-northeast-2 \
./yello-build.zip s3://yello-server-bucket
./yello-build.zip s3://yello-bucket

- name: 📡 CodeDeploy에 배포를 요청합니다.
run: aws deploy create-deployment --application-name yello-server-deploy
run: aws deploy create-deployment --application-name yello-deploy
--deployment-config-name CodeDeployDefault.OneAtATime
--deployment-group-name yello-app
--s3-location bucket=yello-server-bucket,bundleType=zip,key=yello-build.zip
--deployment-group-name yello-deploy
--s3-location bucket=yello-bucket,bundleType=zip,key=yello-build.zip

- name: 💡 배포 상태를 Slack을 통해 전송합니다.
uses: rtCamp/action-slack-notify@v2
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ application-local.yml
firebase*.json
*client_secret*.json

docker/docker-compose.mq.yml
docker/rabbitmq/**

### monitoring ###
monitoring/prometheus/volume
Expand Down
Loading