pull/235/head
mdugdale 2021-04-03 01:20:10 +01:00
parent ad575382e6
commit 7132ada119
3 changed files with 5 additions and 5 deletions

4
dist/index.js vendored
View File

@ -249,7 +249,7 @@ class AWS {
echo $latest echo $latest
if [ -f $latest ]; then if [ -f $latest ]; then
echo "Cache exists" echo "Cache exists"
zip -r ./cache/lib.zip ./${buildUid}/repo/Library/. zip -r $latest ./${buildUid}/repo/Library/.
else else
echo "Cache does not exist" echo "Cache does not exist"
fi fi
@ -369,7 +369,7 @@ class AWS {
` `
apk update; apk update;
apk add zip apk add zip
zip -r ./${buildUid}/Library/. ./${process.env.GITHUB_REF}/lib.zip zip -r ./${buildUid}/Library/. ./cache/lib-${buildUid}.zip
zip -r ./${buildUid}/output.zip ./${buildUid}/repo/build zip -r ./${buildUid}/output.zip ./${buildUid}/repo/build
ls ls
`, `,

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -38,7 +38,7 @@ class AWS {
echo $latest echo $latest
if [ -f $latest ]; then if [ -f $latest ]; then
echo "Cache exists" echo "Cache exists"
zip -r ./cache/lib.zip ./${buildUid}/repo/Library/. zip -r $latest ./${buildUid}/repo/Library/.
else else
echo "Cache does not exist" echo "Cache does not exist"
fi fi
@ -179,7 +179,7 @@ class AWS {
` `
apk update; apk update;
apk add zip apk add zip
zip -r ./${buildUid}/Library/. ./${process.env.GITHUB_REF}/lib.zip zip -r ./${buildUid}/Library/. ./cache/lib-${buildUid}.zip
zip -r ./${buildUid}/output.zip ./${buildUid}/repo/build zip -r ./${buildUid}/output.zip ./${buildUid}/repo/build
ls ls
`, `,