Skip to content

Commit 35b9e8d

Browse files
committed
fix mysql8 syntax
1 parent b81cbe8 commit 35b9e8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
sudo systemctl start mysql.service
7979
sudo mysql -proot -e 'drop database if exists phplistdb'
8080
sudo mysqladmin -proot create phplistdb
81-
sudo mysql -proot -e 'grant all on phplistdb.* to phplist@localhost identified by "phplist"'
81+
sudo mysql -proot -e 'create user phplist@"%" identified by "phplist"; grant all on phplistdb.* to phplist@"%"'
8282
8383
- name: Start Test Server
8484
run: |

0 commit comments

Comments
 (0)