test connect with root

This commit is contained in:
slawkens 2023-05-26 10:44:02 +02:00
parent 7039bda359
commit 2b8c4b3eca

View File

@ -13,7 +13,7 @@ jobs:
image: mysql:latest image: mysql:latest
env: env:
MYSQL_ALLOW_EMPTY_PASSWORD: false MYSQL_ALLOW_EMPTY_PASSWORD: false
MYSQL_ROOT_PASSWORD: password MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: myaac-tfs MYSQL_DATABASE: myaac-tfs
MYSQL_USER: myaac MYSQL_USER: myaac
MYSQL_PASSWORD: myaac MYSQL_PASSWORD: myaac
@ -48,7 +48,7 @@ jobs:
uses: jacobtomlinson/gha-find-replace@v2 uses: jacobtomlinson/gha-find-replace@v2
with: with:
find: 'mysqlUser = "forgottenserver"' find: 'mysqlUser = "forgottenserver"'
replace: 'mysqlUser = "myaac"' replace: 'mysqlUser = "root"'
regex: false regex: false
include: 'tfs/config.lua' include: 'tfs/config.lua'
@ -56,7 +56,7 @@ jobs:
uses: jacobtomlinson/gha-find-replace@v2 uses: jacobtomlinson/gha-find-replace@v2
with: with:
find: 'mysqlPass = ""' find: 'mysqlPass = ""'
replace: 'mysqlPass = "myaac"' replace: 'mysqlPass = "root"'
regex: false regex: false
include: 'tfs/config.lua' include: 'tfs/config.lua'