Skip to content

Commit 6f0af7e

Browse files
committed
[ci/#26]: main에서 배포할 수 있도록 변경
1 parent 5cffc7f commit 6f0af7e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/dev_deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
jobs:
99
build:
1010
runs-on: ubuntu-latest # (3).OS환경
11-
if: github.event.pull_request.merged == true && github.event.pull_request.base.ref == 'test'
11+
if: github.event.pull_request.merged == true && github.event.pull_request.base.ref == 'main'
1212

1313
steps:
1414
- name: Checkout

src/main/resources/application-dev.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ spring:
1515
jpa:
1616
defer-datasource-initialization: true
1717
hibernate:
18-
ddl-auto: create
18+
ddl-auto: none
1919
properties:
2020
hibernate:
2121
format_sql: true
2222
dialect: org.hibernate.dialect.MySQL8Dialect
2323
show-sql: true
2424
sql:
2525
init:
26-
mode: always
26+
mode: never

0 commit comments

Comments
 (0)