diff --git a/main.js b/main.js index ac33b89..d4f9cb7 100644 --- a/main.js +++ b/main.js @@ -133,13 +133,15 @@ async function main() { ]) core.endGroup() - core.startGroup("Install build dependencies") - await exec.exec("docker", [ - "exec", - container, - "apt-get", "build-dep", "-yq", "-t", imageTag, sourceDirectory - ]) - core.endGroup() + if (imageTag != "trusty") { + core.startGroup("Install build dependencies") + await exec.exec("docker", [ + "exec", + container, + "apt-get", "build-dep", "-yq", "-t", imageTag, sourceDirectory + ]) + core.endGroup() + } core.startGroup("Build packages") await exec.exec("docker", [