correction to cloud formation
parent
3171b13033
commit
a966e8677d
File diff suppressed because one or more lines are too long
|
|
@ -11,9 +11,16 @@ class AWS {
|
||||||
static async runBuildJob(buildParameters, baseImage) {
|
static async runBuildJob(buildParameters, baseImage) {
|
||||||
await this.run(
|
await this.run(
|
||||||
buildParameters.awsStackName,
|
buildParameters.awsStackName,
|
||||||
'valian/git-lfs',
|
'alpine/git',
|
||||||
['git'],
|
['bin/bash', '-c'],
|
||||||
['clone', `https://github.com/${process.env.GITHUB_REPOSITORY}.git`, `repo`],
|
[
|
||||||
|
'ls',
|
||||||
|
'&&',
|
||||||
|
'git',
|
||||||
|
'clone',
|
||||||
|
`https://github.com/${process.env.GITHUB_REPOSITORY}.git`,
|
||||||
|
`repo`,
|
||||||
|
],
|
||||||
'/efsdata',
|
'/efsdata',
|
||||||
'/efsdata/',
|
'/efsdata/',
|
||||||
[
|
[
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue