Altered mysql start command in workflows

Due to https://github.com/actions/virtual-environments/issues/4732
This commit is contained in:
Dan Brown 2021-12-15 13:56:21 +00:00
parent 73a37b3cd9
commit aa9dafec85
No known key found for this signature in database
GPG Key ID: 46D9F943C24A2EF9
2 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ jobs:
- name: Start Database
run: |
sudo /etc/init.d/mysql start
sudo systemctl start mysql
- name: Setup Database
run: |

View File

@ -36,7 +36,7 @@ jobs:
- name: Start MySQL
run: |
sudo /etc/init.d/mysql start
sudo systemctl start mysql
- name: Create database & user
run: |