forked from libre-devops/azure-terraform-gh-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
43 lines (36 loc) · 1.09 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
# action.yml
name: 'Libre DevOps - Deploy Azure Function App - GitHub Action'
description: 'The heavily opinionated Libre DevOps Action to deploy an Azure function app.'
author: "Craig Thacker <[email protected]>"
branding:
icon: 'terminal'
color: 'red'
inputs:
code-path:
description: 'The absolute path in Linux format to your code code'
required: true
code-client-id:
description: 'The client id needed for az login'
required: true
code-client-secret:
description: 'The client secret needed for az login'
required: true
code-tenant-id:
description: 'The tenant id needed for az login'
required: true
code-app-name:
description: 'The core function command you want to run'
required: true
code-additional-params:
description: 'The additional params'
required: true
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.code-path }}
- ${{ inputs.code-client-id }}
- ${{ inputs.code-client-secret }}
- ${{ inputs.code-tenant-id }}
- ${{ inputs.code-app-name }}
- ${{ inputs.code-additional-params }}