gha: Fix unzip extracting to the wrong directory

This commit is contained in:
TSR Berry 2022-11-05 16:45:32 +01:00
parent 8275b05ff4
commit 331c11fea1
No known key found for this signature in database
GPG Key ID: 52353C0A4CCA15E2

View File

@ -105,7 +105,7 @@ jobs:
fs.writeFileSync(`/home/runner/${artifact.name}.zip`, Buffer.from(download.data));
console.log(`Unzipping: /home/runner/${artifact.name}.zip`);
await exec.exec("unzip", [`/home/runner/${artifact.name}.zip`]);
await exec.exec("unzip", [`/home/runner/${artifact.name}.zip`, "-d", "/home/runner/"]);
console.log(`Extracting library from 7z file to: ${destDir}/${sourceFile}`);
await exec.exec("7z", ["e", `-o${destDir}/`, `/home/runner/${artifact.name}`, `${sourceDir}${sourceFile}`], options);
if (sourceFile != destFile) {