We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e4777e commit 63e43aeCopy full SHA for 63e43ae
.github/workflows/build-release.yml
@@ -7,7 +7,7 @@ on:
7
8
jobs:
9
test:
10
- runs-on: ubuntu-18.04
+ runs-on: ubuntu-22.04
11
continue-on-error: ${{ matrix.experimental }}
12
13
strategy:
@@ -78,7 +78,7 @@ jobs:
78
sudo systemctl start mysql.service
79
sudo mysql -proot -e 'drop database if exists phplistdb'
80
sudo mysqladmin -proot create phplistdb
81
- 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@"%"'
82
83
- name: Start Test Server
84
run: |
0 commit comments