-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathaction.yml
More file actions
20 lines (20 loc) · 886 Bytes
/
action.yml
File metadata and controls
20 lines (20 loc) · 886 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
name: "GitHub Actions WebDeploy"
description: "Deploy to IIS using GitHub Actions"
author: "cschleiden"
branding:
icon: 'play'
color: 'orange'
inputs:
webSiteName:
description: 'Name of an existing website on the IIS machine'
required: true
package:
description: 'File path to the package or a folder generated by MSBuild or a compressed archive file.'
required: true
removeAdditionalFilesFlag:
description: '(Optional) Select the option to delete files on the Web App that have no matching files in the Web App zip package.'
takeAppOfflineFlag:
description: '(Optional) Select the option to take the Web App offline by placing an app_offline.htm file in the root directory of the Web App before the sync operation begins. The file will be removed after the sync operation completes successfully.'
runs:
using: "node12"
main: "dist/index.js"