Skip to content

Commit

Permalink
fix: dev.yml secret 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
daeunkwak committed Jul 9, 2023
1 parent fbaed17 commit 54b4e59
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/cider-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ jobs:
with:
files: ./cider-api/src/main/resources/application.yml
env:
spring.datasource.url_dev: ${{ secrets.DB_URL_DEV }}
spring.datasource.username: ${{ secrets.DB_USERNAME }}
spring.datasource.password: ${{ secrets.DB_PASSWORD }}
kakao.restapiKey: ${{secrets.RESTAPI_KEY}}
Expand Down
2 changes: 1 addition & 1 deletion cider-api/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ spring:
on-profile: ["local", "dev"]

datasource:
url: ${url_dev}
url: jdbc:mysql://cider.chghplczsjfl.ap-northeast-2.rds.amazonaws.com:3306/cider_dev
driverClassName: com.mysql.cj.jdbc.Driver
username: ${username}
password: ${password}
Expand Down

0 comments on commit 54b4e59

Please sign in to comment.