Skip to content
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
6 changes: 3 additions & 3 deletions .github/workflows/prod-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,9 @@ jobs:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_PROD_ACCESS_KEY }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_PROD_SECRET_KEY }}
run:
aws deploy create-deployment
--application-name runnect-prod-codedeploy
--deployment-group-name runnect-prod-codedeploy-group
aws deploy create-deployment
--application-name runnect-prod-app
--deployment-group-name runnect-prod-deploy-group
--file-exists-behavior OVERWRITE
--s3-location bucket=runnect-prod-bucket,bundleType=zip,key=runnect_prod_server.zip
--region ap-northeast-2
4 changes: 2 additions & 2 deletions .github/workflows/prod-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,5 @@ jobs:
- name: Grant execute permission for gradlew
run: chmod +x gradlew

- name: Build with Gradle # 실제 application build
run: ./gradlew build
- name: Build with Gradle
run: ./gradlew build -x test
Loading