Skip to content

Commit b1b38d5

Browse files
committed
build: 써드파티 안쓰고 하기
1 parent 2f86a8f commit b1b38d5

File tree

1 file changed

+2
-9
lines changed

1 file changed

+2
-9
lines changed

.github/workflows/deploy.yml

+2-9
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,8 @@ jobs:
1717

1818
steps:
1919
- name: Setup MySQL
20-
uses: samin/mysql-action@v1
21-
with:
22-
host port: 20000
23-
container port: 3306
24-
character set server: 'utf8mb4'
25-
collation server: 'utf8mb4_general_ci'
26-
mysql version: '8.0'
27-
mysql database: 'busan'
28-
mysql root password: password
20+
run: |
21+
sudo docker run -d -p 20000:3306 -e MYSQL_DATABASE=busan -e MYSQL_ROOT_PASSWORD=password mysql:8.0.23
2922
- uses: actions/checkout@v3
3023
- uses: actions/setup-java@v3
3124
with:

0 commit comments

Comments
 (0)