Skip to content

Commit 83ffd68

Browse files
Copilotrenemadsen
andcommitted
Fix MariaDB container name mismatch in GitHub Actions workflows
Co-authored-by: renemadsen <[email protected]>
1 parent 13e025b commit 83ffd68

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/dotnet-core-master.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
- name: Wait for MariaDB
5555
run: |
5656
for i in {1..30}; do
57-
if docker exec mariadb-test mysql -uroot -psecretpassword -e "SELECT 1" &>/dev/null; then
57+
if docker exec mariadbtest mysql -uroot -psecretpassword -e "SELECT 1" &>/dev/null; then
5858
echo "MariaDB is ready!"
5959
break
6060
fi

.github/workflows/dotnet-core-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
- name: Wait for MariaDB
5656
run: |
5757
for i in {1..30}; do
58-
if docker exec mariadb-test mysql -uroot -psecretpassword -e "SELECT 1" &>/dev/null; then
58+
if docker exec mariadbtest mysql -uroot -psecretpassword -e "SELECT 1" &>/dev/null; then
5959
echo "MariaDB is ready!"
6060
break
6161
fi

0 commit comments

Comments
 (0)