-
Notifications
You must be signed in to change notification settings - Fork 11
/
action.yml
32 lines (32 loc) · 1.21 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
name: 'App Service Web App Build Action'
description: 'Build an Azure Web App on Linux using the Oryx build system.'
inputs:
source-directory:
description: |
'Relative path (within the repository) to the source directory of the project you want to build; if no value is
provided for this, the root of the repository ("GITHUB_WORKSPACE" environment variable) will be built.'
required: false
platform:
description: |
'Programming platform used to build the web app; if no value is provided, Oryx will determine the platform to
build with. Supported values: dotnet, golang, java, nodejs, php, python, ruby'
required: false
platform-version:
description: |
'Version of the programming platform used to build the web app; if no value is provided, Oryx will determine the
version needed to build the repository.'
required: false
output-directory:
description: 'The directory where the build output will be copied to.'
required: false
branding:
icon: 'login.svg'
color: 'blue'
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.source-directory }}
- ${{ inputs.platform }}
- ${{ inputs.platform-version }}
- ${{ inputs.output-directory }}