forked from Azure/mysql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
27 lines (27 loc) · 1.27 KB
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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'