typescript aws
parent
c14c2fe14b
commit
d398a1e08d
|
|
@ -31,9 +31,13 @@ inputs:
|
||||||
default: ''
|
default: ''
|
||||||
description: 'Path to a Namespace.Class.StaticMethod to run to perform the build.'
|
description: 'Path to a Namespace.Class.StaticMethod to run to perform the build.'
|
||||||
remoteBuildCluster:
|
remoteBuildCluster:
|
||||||
default: ''
|
default: 'local'
|
||||||
required: false
|
required: false
|
||||||
description: 'To use a remote build cluster specify either, aws or k8s as well as the required parameters.'
|
description: 'Either local, k8s or aws can be used to run builds on a remote cluster. Additional parameters must be configured.'
|
||||||
|
awsStackName:
|
||||||
|
default: 'game-ci'
|
||||||
|
required: false
|
||||||
|
description: 'The Cloud Formation stack name that must be setup before using this option.'
|
||||||
kubeConfig:
|
kubeConfig:
|
||||||
default: ''
|
default: ''
|
||||||
required: false
|
required: false
|
||||||
|
|
|
||||||
|
|
@ -10,6 +10,7 @@ import Project from './project';
|
||||||
import Unity from './unity';
|
import Unity from './unity';
|
||||||
import Versioning from './versioning';
|
import Versioning from './versioning';
|
||||||
import Kubernetes from './kubernetes';
|
import Kubernetes from './kubernetes';
|
||||||
|
import AWS from './aws';
|
||||||
|
|
||||||
export {
|
export {
|
||||||
Action,
|
Action,
|
||||||
|
|
@ -24,4 +25,5 @@ export {
|
||||||
Unity,
|
Unity,
|
||||||
Versioning,
|
Versioning,
|
||||||
Kubernetes,
|
Kubernetes,
|
||||||
|
AWS
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue