-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
30 lines (30 loc) · 994 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
name: 'Carol docker build'
description: 'Builds docker image on Carol based on the manifest.json information.'
author: 'GitHub'
inputs:
repo-token:
description: "The GITHUB_TOKEN secret"
carol-tenant:
description: "Carol app's tenant"
carol-organization:
description: "Carol app's organization"
carol-app-name:
description: "Carol app's name"
carol-connector-id:
description: "Carol app's connector id"
carol-api-key:
description: "Carol app's API key"
manifest-path:
description: "Manifest.json file path. The default value points to the repository root, ff the file is not in there use the pattern /path/to/file/ to define its path."
default: "."
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.repo-token }}
- ${{ inputs.carol-tenant }}
- ${{ inputs.carol-organization }}
- ${{ inputs.carol-app-name }}
- ${{ inputs.carol-connector-id }}
- ${{ inputs.carol-api-key }}
- ${{ inputs.manifest-path }}