-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.yml
53 lines (53 loc) · 1.5 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
44
45
46
47
48
49
50
51
52
53
name: Corva App Deployer
description: Deploys apps to Corva Dev Center
author: Jordan Ambra
branding:
icon: 'upload-cloud'
color: 'blue'
inputs:
api-key:
description: 'API key for deployment to Dev Center'
required: true
api-url:
description: 'API URL for the Corva Platform API'
required: false
default: 'https://api.corva.ai'
app-key:
description: 'App key for uniquely identifying your app in Dev Center'
required: true
notes:
description: 'Notes to set for this version of the package'
required: false
skip-analysis:
description: 'Skip static analysis (linters) such as flake8 or pylint'
required: false
default: 'false'
skip-testing:
description: 'Skip automated testing such as pytest'
required: false
default: 'false'
prebuild-package-path:
description: 'Path to brebuild app zip'
required: false
default: ''
ignored-paths:
description: 'Path patterns to skip zip, separated by space'
required: false
default: ''
publish:
description: 'Change status to published after package upload'
required: false
default: 'false'
label:
description: 'Label to set on the package when publishing'
required: false
outputs:
package-id:
description: 'Package ID that was deployed'
package-version:
description: 'Package version that was deployed'
package-status:
description: 'Final status of the deployed package (draft is a successful deploy)'
runs:
using: 'node20'
main: 'dist/index.js'