Skip to content

Commit 2f86a8f

Browse files
committed
build: 호스트 포트가 20000이 되는게 맞음...
1 parent 4063624 commit 2f86a8f

File tree

2 files changed

+20
-4
lines changed

2 files changed

+20
-4
lines changed

.github/workflows/deploy.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,13 @@ jobs:
1919
- name: Setup MySQL
2020
uses: samin/mysql-action@v1
2121
with:
22-
host port: 3306
23-
container port: 20000
22+
host port: 20000
23+
container port: 3306
2424
character set server: 'utf8mb4'
2525
collation server: 'utf8mb4_general_ci'
2626
mysql version: '8.0'
2727
mysql database: 'busan'
2828
mysql root password: password
29-
mysql user: root
30-
mysql password: password
3129
- uses: actions/checkout@v3
3230
- uses: actions/setup-java@v3
3331
with:

src/test/resources/application.yaml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
spring:
2+
jpa:
3+
hibernate:
4+
ddl-auto: create-drop
5+
show-sql: true
6+
properties:
7+
hibernate:
8+
format_sql: true
9+
10+
datasource:
11+
url: jdbc:mysql://localhost:20000/busan
12+
username: root
13+
password: password
14+
15+
phone:
16+
key: testesttstset
17+
secret: testsetsetsetstsetsetsets
18+
sender: 01012345678

0 commit comments

Comments
 (0)