From 20850d11cf76093f3a6876740b16f80b50de0bb8 Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Wed, 26 Feb 2025 23:14:54 +0100 Subject: [PATCH] github-release: only MinGit is built for i686, no other artifacts This is yet another step towards stopping to publish all i686 artifacts except MinGit, see https://github.com/git-for-windows/git/issues/5394. Signed-off-by: Johannes Schindelin --- github-release.js | 1 + 1 file changed, 1 insertion(+) diff --git a/github-release.js b/github-release.js index 41bf2662..31b6a77f 100644 --- a/github-release.js +++ b/github-release.js @@ -209,6 +209,7 @@ const getGitArtifacts = async ( const urls = await getWorkflowRunArtifactsURLs(context, token, owner, repo, workflowRunId) for (const artifact of artifacts) { if (architecture.name === 'aarch64' && artifact.name === 'mingit-busybox') continue + if (architecture.name === 'i686' && !artifact.name.startsWith('mingit')) continue const name = `${artifact.name}-${architecture.name}` context.log(`Downloading ${name}`) await downloadAndUnZip(token, urls[name], name)