Skip to content

Commit

Permalink
github-release: only MinGit is built for i686, no other artifacts
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
dscho committed Feb 26, 2025
1 parent 850344c commit 20850d1
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions github-release.js
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 20850d1

Please sign in to comment.