generated from actions/hello-world-docker-action
-
Notifications
You must be signed in to change notification settings - Fork 2
/
action.yml
29 lines (29 loc) · 793 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
name: 'Azure Pages Build/Deploy'
description: 'Builds and deploys an Azure Pages compatible repository'
inputs:
azure_pages_buildhost:
description: 'Azure Pages Build Hostname'
required: true
default: ''
azure_pages_api_token:
description: 'Azure Pages Api Token'
required: true
default: ''
app_build_output_location:
description: 'Location of the app build output'
required: true
default: 'build'
app_source_location:
description: 'Location of the source code for the app'
required: false
default: 'app'
azure_function_location:
description: 'Azure Function Location'
required: false
default: 'api'
outputs:
time: # id of output
description: 'The time we we greeted you'
runs:
using: 'docker'
image: 'Dockerfile'