From d398a1e08de59e938163a7dab0a7118fc771d3c7 Mon Sep 17 00:00:00 2001 From: mdugdale Date: Sat, 27 Mar 2021 22:40:54 +0000 Subject: [PATCH] typescript aws --- action.yml | 8 ++++++-- src/model/index.ts | 2 ++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 92668de6..39144d27 100644 --- a/action.yml +++ b/action.yml @@ -31,9 +31,13 @@ inputs: default: '' description: 'Path to a Namespace.Class.StaticMethod to run to perform the build.' remoteBuildCluster: - default: '' + default: 'local' 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: default: '' required: false diff --git a/src/model/index.ts b/src/model/index.ts index f9a22758..3c0ffdb7 100644 --- a/src/model/index.ts +++ b/src/model/index.ts @@ -10,6 +10,7 @@ import Project from './project'; import Unity from './unity'; import Versioning from './versioning'; import Kubernetes from './kubernetes'; +import AWS from './aws'; export { Action, @@ -24,4 +25,5 @@ export { Unity, Versioning, Kubernetes, + AWS };