typescript aws
parent
47fd2f4da2
commit
e6c7fba9e9
|
|
@ -647,6 +647,7 @@ class BuildParameters {
|
||||||
androidKeyaliasPass: input_1.default.androidKeyaliasPass,
|
androidKeyaliasPass: input_1.default.androidKeyaliasPass,
|
||||||
customParameters: input_1.default.customParameters,
|
customParameters: input_1.default.customParameters,
|
||||||
remoteBuildCluster: input_1.default.remoteBuildCluster,
|
remoteBuildCluster: input_1.default.remoteBuildCluster,
|
||||||
|
awsStackName: input_1.default.awsStackName,
|
||||||
kubeConfig: input_1.default.kubeConfig,
|
kubeConfig: input_1.default.kubeConfig,
|
||||||
githubToken: input_1.default.githubToken,
|
githubToken: input_1.default.githubToken,
|
||||||
kubeContainerMemory: input_1.default.kubeContainerMemory,
|
kubeContainerMemory: input_1.default.kubeContainerMemory,
|
||||||
|
|
@ -1078,6 +1079,9 @@ class Input {
|
||||||
static get remoteBuildCluster() {
|
static get remoteBuildCluster() {
|
||||||
return core.getInput('remoteBuildCluster') || '';
|
return core.getInput('remoteBuildCluster') || '';
|
||||||
}
|
}
|
||||||
|
static get awsStackName() {
|
||||||
|
return core.getInput('awsStackName') || '';
|
||||||
|
}
|
||||||
static get kubeConfig() {
|
static get kubeConfig() {
|
||||||
return core.getInput('kubeConfig') || '';
|
return core.getInput('kubeConfig') || '';
|
||||||
}
|
}
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -5,6 +5,7 @@ import { nanoid } from 'nanoid';
|
||||||
import * as fs from 'fs';
|
import * as fs from 'fs';
|
||||||
import * as core from '@actions/core';
|
import * as core from '@actions/core';
|
||||||
import * as zlib from 'zlib';
|
import * as zlib from 'zlib';
|
||||||
|
import BuildParameters from './build-parameters';
|
||||||
|
|
||||||
class AWS {
|
class AWS {
|
||||||
static async runBuildJob(buildParameters, baseImage) {
|
static async runBuildJob(buildParameters, baseImage) {
|
||||||
|
|
|
||||||
|
|
@ -34,6 +34,7 @@ class BuildParameters {
|
||||||
androidKeyaliasPass: Input.androidKeyaliasPass,
|
androidKeyaliasPass: Input.androidKeyaliasPass,
|
||||||
customParameters: Input.customParameters,
|
customParameters: Input.customParameters,
|
||||||
remoteBuildCluster: Input.remoteBuildCluster,
|
remoteBuildCluster: Input.remoteBuildCluster,
|
||||||
|
awsStackName:Input.awsStackName,
|
||||||
kubeConfig: Input.kubeConfig,
|
kubeConfig: Input.kubeConfig,
|
||||||
githubToken: Input.githubToken,
|
githubToken: Input.githubToken,
|
||||||
kubeContainerMemory: Input.kubeContainerMemory,
|
kubeContainerMemory: Input.kubeContainerMemory,
|
||||||
|
|
|
||||||
|
|
@ -89,6 +89,10 @@ class Input {
|
||||||
return core.getInput('remoteBuildCluster') || '';
|
return core.getInput('remoteBuildCluster') || '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static get awsStackName(){
|
||||||
|
return core.getInput('awsStackName') || '';
|
||||||
|
}
|
||||||
|
|
||||||
static get kubeConfig() {
|
static get kubeConfig() {
|
||||||
return core.getInput('kubeConfig') || '';
|
return core.getInput('kubeConfig') || '';
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue