Skip to content

Commit 20850d1

Browse files
committed
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 git-for-windows/git#5394. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 850344c commit 20850d1

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Diff for: github-release.js

+1
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,7 @@ const getGitArtifacts = async (
209209
const urls = await getWorkflowRunArtifactsURLs(context, token, owner, repo, workflowRunId)
210210
for (const artifact of artifacts) {
211211
if (architecture.name === 'aarch64' && artifact.name === 'mingit-busybox') continue
212+
if (architecture.name === 'i686' && !artifact.name.startsWith('mingit')) continue
212213
const name = `${artifact.name}-${architecture.name}`
213214
context.log(`Downloading ${name}`)
214215
await downloadAndUnZip(token, urls[name], name)

0 commit comments

Comments
 (0)