From 1bc517b168b5d3cdf0d936fc35c97d8f2c9f8d0c Mon Sep 17 00:00:00 2001 From: Te___ho <54144849+Te-H0@users.noreply.github.com> Date: Thu, 18 Apr 2024 19:07:57 +0900 Subject: [PATCH] =?UTF-8?q?[#47]=20feat:=20githubactions=20workflow=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/gradle.yml | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index 2f158214..f549472b 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -42,14 +42,24 @@ jobs: echo "${{ secrets.YML }}" | base64 --decode > src/main/resources/application.yml find src - - name: Set Database - uses: mirromutth/mariadb-action@v1.1 + # - name: Set Database + # uses: mirromutth/mariadb-action@v1.1 + # with: + # host port: 3306 + # container port: 3306 + # mariadb database: 'nanaland' + # maraidb user: 'root' + # mariadb password: ${{ secrets.DATABASE_KEY }} + + - name: Set up MariaDB 10 + uses: getong/mariadb-action@v1.1 with: host port: 3306 container port: 3306 - mariadb database: 'nanaland' - maraidb user: 'root' - mariadb password: ${{ secrets.DATABASE_KEY }} + mysql database: 'nanaland' + mysql user: 'root' + mysql password: ${{ secrets.DATABASE_KEY }} + # mysql root password: ${{ secrets.RootPassword }} # Required if "mysql user" is empty, default is empty. The root superuser password # 3) gradlew 권한 설정 - name: Grant execute permission for gradlew