generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
40 lines (40 loc) · 1.24 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
name: "Nullplatform Build"
description: "Github Action to manage application builds on Nullplatform"
inputs:
action:
description: "The build action controls what happens to the build. Can be one of: create, update"
required: false
id:
description: "The build id"
required: false
status:
description: "The build status. Can be one of: 'pending', 'in_progress', 'failed', 'successful'"
required:
application-id:
description: "The application id to build"
required: false
commit-id:
description: "The SHA commit"
required: false
commit-permalink:
description: "The commit web link"
required: false
description:
description: "The build description. Defaults to commit message"
required: false
branch:
description: "The build branch. Defaults to current workflow execution branch"
required: false
image-repository-url:
description: "The image repository URL wheres the build image was uploaded"
required: false
outputs:
id:
description: "The build id"
status:
description: "The new build status. Can be one of: 'pending', 'in_progress', 'failed', 'successful'"
application-id:
description: "The application id built"
runs:
using: "node20"
main: "dist/index.js"