From e3e5bf0c971cd32ae3aaa5094c4ae014a95ce139 Mon Sep 17 00:00:00 2001 From: Laurent Indermuehle Date: Thu, 23 Mar 2023 15:24:42 +0100 Subject: [PATCH] Fix db_client must match db_engine not connector I used the wrong variable by mistake. --- .github/workflows/ansible-test-plugins.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ansible-test-plugins.yml b/.github/workflows/ansible-test-plugins.yml index 7139c4b..999278e 100644 --- a/.github/workflows/ansible-test-plugins.yml +++ b/.github/workflows/ansible-test-plugins.yml @@ -273,7 +273,7 @@ jobs: if [[ ${{ env.db_engine_version_flat }} == 57 ]]; then echo "db_client=my57" >> $GITHUB_ENV; else - echo "db_client=$(echo ${{ matrix.connector_name }})" >> $GITHUB_ENV; + echo "db_client=$(echo ${{ matrix.db_engine_name }})" >> $GITHUB_ENV; fi - name: Set docker_image