From f83a75bd8a90241233f1fac56646582dc90f8985 Mon Sep 17 00:00:00 2001 From: mytlogos Date: Wed, 15 Dec 2021 16:06:39 +0100 Subject: [PATCH] ci: fix interpolated string --- .github/workflows/ci-test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-test.yml b/.github/workflows/ci-test.yml index c038bec7..b956745d 100644 --- a/.github/workflows/ci-test.yml +++ b/.github/workflows/ci-test.yml @@ -26,9 +26,9 @@ jobs: with: mariadb version: "10.6" # Optional, default value is "latest". The version of the MariaDB mysql database: "enterprise" # Optional, default value is "test". The specified database which will be create - mysql root password: "${{ dbPassword }}" # Required if "mysql user" is empty, default is empty. The root superuser password - mysql user: "${{ dbUser }}" # Required if "mysql root password" is empty, default is empty. The superuser for the specified database. Can use secrets, too - mysql password: "${{ dbPassword }}" # Required if "mysql user" exists. The password for the "mysql user" + mysql root password: "${{ env.dbPassword }}" # Required if "mysql user" is empty, default is empty. The root superuser password + mysql user: "${{ env.dbUser }}" # Required if "mysql root password" is empty, default is empty. The superuser for the specified database. Can use secrets, too + mysql password: "${{ env.dbPassword }}" # Required if "mysql user" exists. The password for the "mysql user" - uses: actions/checkout@v2