зеркало из https://github.com/Azure/mysql.git
18 строки
946 B
YAML
18 строки
946 B
YAML
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.'
|
||
required: true
|
||
sql-file:
|
||
description: 'Path to SQL script file, *.sql 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.'
|
||
runs:
|
||
using: 'node12'
|
||
main: 'lib/main.js'
|