pull/235/head
mdugdale 2021-04-03 15:12:07 +01:00
parent bbc908e87a
commit 92e15f0972
3 changed files with 13 additions and 13 deletions

12
dist/index.js vendored
View File

@ -376,12 +376,12 @@ class AWS {
yield this.run(buildUid, buildParameters.awsStackName, 'alpine', ['/bin/sh'], [ yield this.run(buildUid, buildParameters.awsStackName, 'alpine', ['/bin/sh'], [
'-c', '-c',
` `
apk update; apk update;
apk add zip apk add zip
zip -r ./${buildUid}/repo/Library/* ./cache/${branchName}/lib-${buildUid}.zip zip -r -o ./cache/${branchName}/lib-${buildUid}.zip ./${buildUid}/repo/Library/*
zip -r ./${buildUid}/repo/build/* ./build-${buildUid}.zip zip -r -o ./build-${buildUid}.zip ./${buildUid}/repo/build/*
ls ls
`, `,
], '/data', '/data/', [ ], '/data', '/data/', [
{ {
name: 'GITHUB_SHA', name: 'GITHUB_SHA',

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -184,12 +184,12 @@ class AWS {
[ [
'-c', '-c',
` `
apk update; apk update;
apk add zip apk add zip
zip -r ./${buildUid}/repo/Library/* ./cache/${branchName}/lib-${buildUid}.zip zip -r -o ./cache/${branchName}/lib-${buildUid}.zip ./${buildUid}/repo/Library/*
zip -r ./${buildUid}/repo/build/* ./build-${buildUid}.zip zip -r -o ./build-${buildUid}.zip ./${buildUid}/repo/build/*
ls ls
`, `,
], ],
'/data', '/data',
'/data/', '/data/',