We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5cffc7f commit 6f0af7eCopy full SHA for 6f0af7e
.github/workflows/dev_deploy.yml
@@ -8,7 +8,7 @@ on:
8
jobs:
9
build:
10
runs-on: ubuntu-latest # (3).OS환경
11
- if: github.event.pull_request.merged == true && github.event.pull_request.base.ref == 'test'
+ if: github.event.pull_request.merged == true && github.event.pull_request.base.ref == 'main'
12
13
steps:
14
- name: Checkout
src/main/resources/application-dev.yml
@@ -15,12 +15,12 @@ spring:
15
jpa:
16
defer-datasource-initialization: true
17
hibernate:
18
- ddl-auto: create
+ ddl-auto: none
19
properties:
20
21
format_sql: true
22
dialect: org.hibernate.dialect.MySQL8Dialect
23
show-sql: true
24
sql:
25
init:
26
- mode: always
+ mode: never
0 commit comments