-
Notifications
You must be signed in to change notification settings - Fork 198
/
action.yml
52 lines (51 loc) · 2.11 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# web app action
name: 'Azure WebApp'
description: 'Deploy Web Apps/Containerized Web Apps to Azure. github.com/Azure/Actions'
inputs:
app-name:
description: 'Name of the Azure Web App'
required: true
publish-profile:
description: 'Applies to Web Apps(Windows and Linux) and Web App Containers(linux). Multi container scenario not supported. Publish profile (*.publishsettings) file contents with Web Deploy secrets'
required: false
slot-name:
description: 'Enter an existing Slot other than the Production slot'
required: false
default: 'production'
package:
description: 'Applies to Web App only: Path to package or folder. *.zip, *.war, *.jar or a folder to deploy'
required: false
default: '.'
images:
description: "Applies to Web App Containers only: Specify the fully qualified container image(s) name. For example, 'myregistry.azurecr.io/nginx:latest' or 'python:3.7.2-alpine/'. For multi-container scenario multiple container image names can be provided (multi-line separated)"
required: false
configuration-file:
description: 'Applies to Web App Containers only: Path of the Docker-Compose file. Should be a fully qualified path or relative to the default working directory. Required for multi-container scenario'
required: false
startup-command:
description: 'Enter the start up command. For ex. dotnet run or dotnet run'
required: false
resource-group-name:
description: 'Enter the resource group name of the web app'
required: false
type:
description: 'Enter deployment type (JAR, WAR, EAR, ZIP, Static)'
required: false
target-path:
description: "Target path in the web app. For ex. '/home/site/wwwroot'"
required: false
clean:
description: 'Delete existing files target directory before deploying'
required: false
restart:
description: 'Restart the app service after deployment'
required: false
outputs:
webapp-url:
description: 'URL to work with your webapp'
branding:
icon: 'webapp.svg'
color: 'blue'
runs:
using: 'node20'
main: 'lib/main.js'