Skip to content

Commit

Permalink
fix mysql8 syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
michield committed Jan 31, 2023
1 parent b81cbe8 commit 35b9e8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
sudo systemctl start mysql.service
sudo mysql -proot -e 'drop database if exists phplistdb'
sudo mysqladmin -proot create phplistdb
sudo mysql -proot -e 'grant all on phplistdb.* to phplist@localhost identified by "phplist"'
sudo mysql -proot -e 'create user phplist@"%" identified by "phplist"; grant all on phplistdb.* to phplist@"%"'
- name: Start Test Server
run: |
Expand Down

0 comments on commit 35b9e8d

Please sign in to comment.