Skip to content

Commit

Permalink
mysql
Browse files Browse the repository at this point in the history
  • Loading branch information
DOEKYONG committed Oct 5, 2023
1 parent 6b7d22c commit 67b2e3f
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/auto-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,16 @@ jobs:
defaults:
run:
working-directory: ${{ env.BE_WORKING_DIR }}
services:
mysql_db:
image: mysql:8.0
ports:
- 3306:3306 # HOST:CONTAINER
env:
MYSQL_DATABASE: secondhand
MYSQL_USER: root
MYSQL_PASSWORD: 1234

steps:

# 1. Source 단계
Expand All @@ -46,7 +56,8 @@ jobs:
sudo apt-get update
sudo apt-get install -y redis-server
sudo service redis-server start

# 3. build 단계
- name: Grant execute permission for gradlew
run: chmod +x ./gradlew
Expand Down

0 comments on commit 67b2e3f

Please sign in to comment.