2019-11-01 12:16:53 +03:00
|
|
|
|
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:
|
2020-10-29 10:02:25 +03:00
|
|
|
|
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
|
2019-11-01 12:16:53 +03:00
|
|
|
|
sql-file:
|
2021-01-21 11:00:21 +03:00
|
|
|
|
description: 'Path to SQL script file to deploy'
|
2019-11-01 12:16:53 +03:00
|
|
|
|
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.'
|
2022-08-04 12:31:37 +03:00
|
|
|
|
required: false
|
2019-11-01 12:16:53 +03:00
|
|
|
|
runs:
|
|
|
|
|
using: 'node12'
|
|
|
|
|
main: 'lib/main.js'
|