-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaction.yml
40 lines (36 loc) · 986 Bytes
/
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
name: Azure App Service Publish Profile
author: Aliencube Community
description: Retrieve or reset the publish profile of Azure Web App or Functions App in XML format
branding:
icon: clipboard
color: purple
inputs:
resourceGroupName:
description: Resource group name.
required: true
appName:
description: App instance name.
required: true
reset:
description: Value indicating whether to reset the publish profile or not.
required: false
default: 'false'
subscriptionId:
description: Optionally provide the Azure Subscription Id to select the appropriate Azure Subscription where the App instance resides.
required: false
default: ''
outputs:
profile:
description: Publish profile in XML.
runs:
using: docker
image: Dockerfile
args:
- -ResourceGroupName
- ${{ inputs.resourceGroupName }}
- -AppName
- ${{ inputs.appName }}
- -Reset
- ${{ inputs.reset }}
- -SubscriptionId
- ${{ inputs.subscriptionId }}