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