Fix db_client must match db_engine not connector

I used the wrong variable by mistake.
This commit is contained in:
Laurent Indermuehle 2023-03-23 15:24:42 +01:00
parent 96efd41acc
commit e3e5bf0c97
No known key found for this signature in database
GPG key ID: 93FA944C9F34DD09

View file

@ -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