Skip to content

Commit

Permalink
ci: fix interpolated string
Browse files Browse the repository at this point in the history
  • Loading branch information
mytlogos committed Dec 15, 2021
1 parent 4afeb47 commit f83a75b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit f83a75b

Please sign in to comment.