diff --git a/main.js b/main.js index 8a43f6c..c03480a 100644 --- a/main.js +++ b/main.js @@ -82,6 +82,14 @@ async function main() { "dpkg-buildpackage", "-tc" ]) core.endGroup() + + core.startGroup("Copy artifacts") + await exec.exec("docker", [ + "exec", + container, + "cp", `../${package}_${version}*.*`, "." + ]) + core.endGroup() } catch (error) { core.setFailed(error.message) }