-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#47] feat: githubactions workflow 수정
- Loading branch information
Showing
1 changed file
with
15 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,14 +42,24 @@ jobs: | |
echo "${{ secrets.YML }}" | base64 --decode > src/main/resources/application.yml | ||
find src | ||
- name: Set Database | ||
uses: mirromutth/[email protected] | ||
# - name: Set Database | ||
# uses: mirromutth/[email protected] | ||
# 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/[email protected] | ||
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 | ||
|