name: 'Azure MYSQL Deploy' description: 'Deploy to Azure MySQL database using SQL script files' inputs: server-name: description: 'Server name of Azure DB for Mysql. Example: fabrikam.mysql.database.azure.com. When you connect using Mysql Workbench, this is the same value that is used for Hostname in Parameters' required: true connection-string: description: 'The connection string, including authentication information, for the Azure MySQL Server. (deprecated)' required: false username: description: 'Azure MySQL Server username for login' required: false password: description: 'Azure MySQL Server password for login' required: false database: description: 'Azure MySQL Server database (optional) to connect to. No database will be used automatically.' required: false sql-file: description: 'Path to SQL script file to deploy' required: true arguments: description: 'Additional options supported by mysql simple SQL shell. These options will be applied when executing the given file on the Azure DB for Mysql.' required: false runs: using: 'node12' main: 'lib/main.js'