From 06f3567c7ad01c653faea081c51fdbb811586f1c Mon Sep 17 00:00:00 2001 From: Martin Tzvetanov Grigorov Date: Tue, 25 Oct 2022 15:54:55 +0300 Subject: [PATCH] Fixes #55 - Use both the workflow and job names in the container name Signed-off-by: Martin Tzvetanov Grigorov --- src/run-on-arch.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/run-on-arch.js b/src/run-on-arch.js index aeca1b2e..8835c10e 100644 --- a/src/run-on-arch.js +++ b/src/run-on-arch.js @@ -102,7 +102,7 @@ async function main() { // Generate a container name slug unique to this workflow const containerName = slug([ 'run-on-arch', env.GITHUB_REPOSITORY, env.GITHUB_WORKFLOW, - arch, distro, + env.GITHUB_JOB, arch, distro, ].join('-')); console.log('Configuring Docker for multi-architecture support')