Skip to content

Commit

Permalink
Ci: 재세팅
Browse files Browse the repository at this point in the history
  • Loading branch information
dong99u committed Sep 21, 2024
1 parent 07f73d0 commit b4b39fd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/dev_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ jobs:
DB_URL: ${{ secrets.DB_URL }}
JWT_SECRET: ${{ secrets.JWT_SECRET }}
AWS_S3_BUCKET: ${{ secrets.AWS_S3_BUCKET }}
AWS_ACCESS_KEY: ${{ secrets.AWS_ACCESS_KEY }}
AWS_SECRET_KEY: ${{ secrets.AWS_SECRET_KEY }}
AWS_ACCESS_KEY: ${{ secrets.AWS_S3_ACCESS_KEY }}
AWS_SECRET_KEY: ${{ secrets.AWS_S3_SECRET_KEY }}

run: ./gradlew clean build -x test
shell: bash # (7).build시작
Expand Down Expand Up @@ -62,8 +62,8 @@ jobs:
with:
aws_access_key: ${{ secrets.AWS_ACTION_ACCESS_KEY_ID }}
aws_secret_key: ${{ secrets.AWS_ACTION_SECRET_ACCESS_KEY }}
application_name: pet-qa
environment_name: Pet-qa-env
application_name: pet-qna
environment_name: Pet-qna-env
version_label: github-action-${{ steps.current-time.outputs.formattedTime }}
region: ap-northeast-2
deployment_package: deploy/deploy.zip
Expand Down
6 changes: 3 additions & 3 deletions src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ spring:
jpa:
open-in-view: false
hibernate:
ddl-auto: create-drop
ddl-auto: update
naming:
physical-strategy: org.hibernate.boot.model.naming.PhysicalNamingStrategyStandardImpl
show-sql: true
Expand All @@ -47,8 +47,8 @@ cloud:
stack:
auto: false
credentials:
accessKey: ${AWS_ACCESS_KEY}
secretKey: ${AWS_SECRET_KEY}
accessKey: ${AWS_S3_ACCESS_KEY}
secretKey: ${AWS_S3_SECRET_KEY}
s3:
bucket: ${AWS_S3_BUCKET}
region:
Expand Down

0 comments on commit b4b39fd

Please sign in to comment.